mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 10:59:28 +08:00
[DE][PE] Fix bug with document language
This commit is contained in:
@ -130,8 +130,8 @@ define([
|
||||
},
|
||||
|
||||
onLangSelect: function(cmb, rec, e) {
|
||||
cmb.$el.find('.input-icon').toggleClass('spellcheck-lang', rec.spellcheck);
|
||||
cmb._input.css('padding-left', rec.spellcheck ? 25 : 3);
|
||||
cmb.$el.find('.input-icon').toggleClass('spellcheck-lang', rec && rec.spellcheck);
|
||||
cmb._input.css('padding-left', rec && rec.spellcheck ? 25 : 3);
|
||||
},
|
||||
|
||||
onPrimary: function() {
|
||||
|
||||
Reference in New Issue
Block a user