diff options
Diffstat (limited to 'dev/jquery.jtable.utils.js')
-rw-r--r-- | dev/jquery.jtable.utils.js | 6 |
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) { |