Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / state / SessionProvider.js
index 6728b50..3e22f0f 100644 (file)
@@ -1,18 +1,18 @@
 /*!
- * Ext JS Library 3.1.1
- * Copyright(c) 2006-2010 Ext JS, LLC
+ * Ext JS Library 3.2.0
+ * Copyright(c) 2006-2010 Ext JS, Inc.
  * licensing@extjs.com
  * http://www.extjs.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