Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / src / direct / Transaction.js
index bc4208e..f9c02a8 100644 (file)
@@ -1,32 +1,32 @@
 /*!
- * 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
  */
-/**\r
- * @class Ext.Direct.Transaction\r
- * @extends Object\r
- * <p>Supporting Class for Ext.Direct (not intended to be used directly).</p>\r
- * @constructor\r
- * @param {Object} config\r
- */\r
-Ext.Direct.Transaction = function(config){\r
-    Ext.apply(this, config);\r
-    this.tid = ++Ext.Direct.TID;\r
-    this.retryCount = 0;\r
-};\r
-Ext.Direct.Transaction.prototype = {\r
-    send: function(){\r
-        this.provider.queueTransaction(this);\r
-    },\r
-\r
-    retry: function(){\r
-        this.retryCount++;\r
-        this.send();\r
-    },\r
-\r
-    getProvider: function(){\r
-        return this.provider;\r
-    }\r
+/**
+ * @class Ext.Direct.Transaction
+ * @extends Object
+ * <p>Supporting Class for Ext.Direct (not intended to be used directly).</p>
+ * @constructor
+ * @param {Object} config
+ */
+Ext.Direct.Transaction = function(config){
+    Ext.apply(this, config);
+    this.tid = ++Ext.Direct.TID;
+    this.retryCount = 0;
+};
+Ext.Direct.Transaction.prototype = {
+    send: function(){
+        this.provider.queueTransaction(this);
+    },
+
+    retry: function(){
+        this.retryCount++;
+        this.send();
+    },
+
+    getProvider: function(){
+        return this.provider;
+    }
 };
\ No newline at end of file