X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=roojs-ui-debug.js;h=8b977c32d9a0a6cdaf99fac236decde07da1c6dc;hp=65ba19364e72f16ac3f252a1647f9ed8a694dae2;hb=0ddab346ff681443c6ed9cf659ccd2ffcec4fda8;hpb=f7d8e2ddf712c7e4a8680b35f7901ff10f680d38 diff --git a/roojs-ui-debug.js b/roojs-ui-debug.js index 65ba19364e..8b977c32d9 100644 --- a/roojs-ui-debug.js +++ b/roojs-ui-debug.js @@ -20929,8 +20929,6 @@ Roo.extend(Roo.HtmlEditorCore, Roo.Component, { insertAtCursor : function(text) { - - if(!this.activated){ return; } @@ -21481,7 +21479,7 @@ Roo.extend(Roo.HtmlEditorCore, Roo.Component, { node.className = ''; } - if (a.value.match(/body/)) { + if (a.value.match(/^body$/)) { node.className = ''; } continue; @@ -37860,20 +37858,18 @@ Roo.LoadMask.prototype = { } */ - - - this.el.unmask(this.removeMask); + (function() { this.el.unmask(this.removeMask); }).defer(50, this); }, // private onLoad : function() { - this.el.unmask(this.removeMask); + (function() { this.el.unmask(this.removeMask); }).defer(50, this); }, // private onBeforeLoad : function(){ if(!this.disabled){ - this.el.mask(this.msg, this.msgCls); + (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this); } },