From 284f80f194deb1792d66dc38d429afa65c79e9b6 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 17 Dec 2009 03:59:28 +0000 Subject: [PATCH] Fix * testadempiere site - zkwebui showing two strange windows Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2904136 --- zkwebui/js/persist-min.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zkwebui/js/persist-min.js b/zkwebui/js/persist-min.js index 5a46b42e3f..5fc22765f6 100644 --- a/zkwebui/js/persist-min.js +++ b/zkwebui/js/persist-min.js @@ -34,7 +34,7 @@ this.db.transaction(fn);},init:function(){this.db=openDatabase(this.name,C.sql.v return;scope=scope||this;this.transaction(function(t){t.executeSql(sql,[key],function(t,r){if(r.rows.length>0) fn.call(scope,true,r.rows.item(0)['v']);else fn.call(scope,false,null);});});},set:function(key,val,fn,scope){var rm_sql=C.sql.remove,sql=C.sql.set;this.transaction(function(t){t.executeSql(rm_sql,[key],function(){t.executeSql(sql,[key,val],function(t,r){if(fn) -fn.call(scope||this,true,val);});});});return val;},remove:function(key,fn,scope){var get_sql=C.sql.get;sql=C.sql.remove;this.transaction(function(t){if(fn){t.executeSql(get_sql,[key],function(t,r){if(r.rows.length>0){var val=r.rows.item(0)['v'];t.executeSql(sql,[key],function(t,r){fn.call(scope||this,true,val);});}else{fn.call(scope||this,false,null);}});}else{t.executeSql(sql,[key]);}});}}},globalstorage:{size:5*1024*1024,test:function(){return window.globalStorage?true:false;},methods:{key:function(key){return esc(this.name)+esc(key);},init:function(){alert('domain = '+this.o.domain);this.store=globalStorage[this.o.domain];},get:function(key,fn,scope){key=this.key(key);if(fn) +fn.call(scope||this,true,val);});});});return val;},remove:function(key,fn,scope){var get_sql=C.sql.get;sql=C.sql.remove;this.transaction(function(t){if(fn){t.executeSql(get_sql,[key],function(t,r){if(r.rows.length>0){var val=r.rows.item(0)['v'];t.executeSql(sql,[key],function(t,r){fn.call(scope||this,true,val);});}else{fn.call(scope||this,false,null);}});}else{t.executeSql(sql,[key]);}});}}},globalstorage:{size:5*1024*1024,test:function(){return window.globalStorage?true:false;},methods:{key:function(key){return esc(this.name)+esc(key);},init:function(){this.store=globalStorage[this.o.domain];},get:function(key,fn,scope){key=this.key(key);if(fn) fn.call(scope||this,true,this.store.getItem(key));},set:function(key,val,fn,scope){key=this.key(key);this.store.setItem(key,val);if(fn) fn.call(scope||this,true,val);},remove:function(key,fn,scope){var val;key=this.key(key);val=this.store[key];this.store.removeItem(key);if(fn) fn.call(scope||this,(val!==null),val);}}},localstorage:{size:-1,test:function(){return window.localStorage?true:false;},methods:{key:function(key){return esc(this.name)+esc(key);},init:function(){this.store=localStorage;},get:function(key,fn,scope){key=this.key(key);if(fn) @@ -65,4 +65,4 @@ P._init=true;};P={VERSION:VERSION,type:null,size:0,add:function(o){B[o.id]=o;C.s return;C.search_order.splice(ofs,1);delete B[id];init();},Cookie:ec,Store:function(name,o){if(!C.name_re.exec(name)) throw new Error("Invalid name");if(!P.type) throw new Error("No suitable storage found");o=o||{};this.name=name;o.domain=o.domain||location.host||'localhost';o.domain=o.domain.replace(/:\d+$/,'') -this.o=o;o.expires=o.expires||365*2;o.path=o.path||'/';this.init();}};init();return P;})(); \ No newline at end of file +this.o=o;o.expires=o.expires||365*2;o.path=o.path||'/';this.init();}};init();return P;})();