Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / examples / state / SessionProvider.js
index 7954189..6cda367 100644 (file)
@@ -1,18 +1,18 @@
 /*!
- * Ext JS Library 3.0.3
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+ * Ext JS Library 3.3.1
+ * Copyright(c) 2006-2010 Sencha Inc.
+ * licensing@sencha.com
+ * http://www.sencha.com/license
  */
-Ext.state.SessionProvider = Ext.extend(Ext.state.CookieProvider, {\r
-    readCookies : function(){\r
-        if(this.state){\r
-            for(var k in this.state){\r
-                if(typeof this.state[k] == 'string'){\r
-                    this.state[k] = this.decodeValue(this.state[k]);\r
-                }\r
-            }\r
-        }\r
-        return Ext.apply(this.state || {}, Ext.state.SessionProvider.superclass.readCookies.call(this));\r
-    }\r
+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