X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/docs/source/SessionProvider.html diff --git a/docs/source/SessionProvider.html b/docs/source/SessionProvider.html new file mode 100644 index 00000000..042ec416 --- /dev/null +++ b/docs/source/SessionProvider.html @@ -0,0 +1,21 @@ + + + The source code + + + + +
Ext.state.SessionProvider = Ext.extend(Ext.state.CookieProvider, {
+    readCookies : function(){
+        if(this.state){
+            for(var k in this.state){
+                if(typeof this.state[k] == 'string'){
+                    this.state[k] = this.decodeValue(this.state[k]);
+                }
+            }
+        }
+        return Ext.apply(this.state || {}, Ext.state.SessionProvider.superclass.readCookies.call(this));
+    }
+});
+ + \ No newline at end of file