Browse Source

[FIX] spaces at end of line

pull/213/head
Holger Brunn 9 years ago
parent
commit
eed36fcaa4
  1. 4
      web_ckeditor4/static/src/js/web_ckeditor4.js

4
web_ckeditor4/static/src/js/web_ckeditor4.js

@ -130,7 +130,7 @@ openerp.web_ckeditor4 = function(instance)
start: function() start: function()
{ {
this._super.apply(this, arguments); this._super.apply(this, arguments);
CKEDITOR.lang.load(instance.session.user_context.lang.split('_')[0], 'en', function() {}); CKEDITOR.lang.load(instance.session.user_context.lang.split('_')[0], 'en', function() {});
}, },
initialize_content: function() initialize_content: function()
@ -152,7 +152,7 @@ openerp.web_ckeditor4 = function(instance)
self.store_dom_value(); self.store_dom_value();
}, },
}, },
},
},
this.ckeditor_config)); this.ckeditor_config));
}, },
store_dom_value: function() store_dom_value: function()

Loading…
Cancel
Save