You are not logged in.
Pages: 1
Hi All,
My xinha editor has more than 13000 chars. This is making the load really slow. Takes almost 30 secs to load.
I see the support for a "Loading" message in the javascript to show the msg: "Loading in progress. Please wait!"
I was wondering how I could active it such that it shows when the editor is loading.
Also, any idea on why it may be taking so long to load any ideas on how I can speed it up. I see a 17 sec load time even when I have no plugins and just basic buttons.
Update: I have tracked the performance issue down to this function in XinhaCore.js. Did not find any open ticket around this issue. I may create one later in the day:
Xinha.prototype.inwardHtml = function(html) {
debugger
for(var i in this.plugins){
var _17f=this.plugins[i].instance;
if(_17f&&typeof _17f.inwardHtml=="function"){
html=_17f.inwardHtml(html);
}
Still looking to make the loading message work.
Appreciate any help and input,
Thanks in advance,
WebPrgmer
Last edited by WebPrgmer (2009-06-10 18:47:17)
Offline
Hi, look here
http://xinha.raimundmeyer.de/JSdoc/Xinh … howLoading
Offline
Pages: 1