X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/DelayedTask.html diff --git a/docs/source/DelayedTask.html b/docs/source/DelayedTask.html index d3b3a2a7..0a777be3 100644 --- a/docs/source/DelayedTask.html +++ b/docs/source/DelayedTask.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.util.DelayedTask
  * 
  * The DelayedTask class provides a convenient way to "buffer" the execution of a method,
@@ -43,7 +60,7 @@ Ext.util.DelayedTask = function(fn, scope, args) {
             fn.apply(scope, args || []);
         };
 
-    /**
+    /**
      * Cancels any pending timeout and queues a new one
      * @param {Number} delay The milliseconds to delay
      * @param {Function} newFn (optional) Overrides function passed to constructor
@@ -59,7 +76,7 @@ Ext.util.DelayedTask = function(fn, scope, args) {
         id = setInterval(call, delay);
     };
 
-    /**
+    /**
      * Cancel the last queued timeout
      */
     this.cancel = function(){
@@ -68,4 +85,6 @@ Ext.util.DelayedTask = function(fn, scope, args) {
             id = null;
         }
     };
-};
\ No newline at end of file +};
+ +