summaryrefslogtreecommitdiffstats
path: root/dev/jquery.jtable.utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'dev/jquery.jtable.utils.js')
-rw-r--r--dev/jquery.jtable.utils.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/dev/jquery.jtable.utils.js b/dev/jquery.jtable.utils.js
index 9b92f0c..5080f16 100644
--- a/dev/jquery.jtable.utils.js
+++ b/dev/jquery.jtable.utils.js
@@ -94,6 +94,12 @@
return str;
},
+ /* Checks if given object is a jQuery Deferred object.
+ */
+ _isDeferredObject: function (obj) {
+ return obj.then && obj.done && obj.fail;
+ },
+
//Logging methods ////////////////////////////////////////////////////////
_logDebug: function (text) {