mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 21:05:11 +08:00
[DE] Fix style name (remove spaces)
This commit is contained in:
@ -85,6 +85,7 @@ define([
|
||||
style : 'width: 100%;',
|
||||
validateOnBlur: false,
|
||||
validation : function(value) {
|
||||
value = value.trim();
|
||||
var isvalid = value != '';
|
||||
|
||||
if (isvalid) {
|
||||
@ -121,7 +122,7 @@ define([
|
||||
|
||||
getTitle: function () {
|
||||
var me = this;
|
||||
return me.inputTitle.getValue();
|
||||
return me.inputTitle.getValue().trim();
|
||||
},
|
||||
|
||||
getNextStyle: function () {
|
||||
|
||||
Reference in New Issue
Block a user