diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 18:09:53 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 18:09:53 -0400 |
commit | 1374f8271a4ec79dbdd1ee13812f5946dbb2f35e (patch) | |
tree | 02266c2f813c1727d7a53f29798d448691d44b8f /ui/jquery.ui.datepicker.js | |
parent | f1e1f8ae15d29432d3aade28291f41166aa6b77a (diff) | |
download | jquery-ui-1374f8271a4ec79dbdd1ee13812f5946dbb2f35e.tar.gz jquery-ui-1374f8271a4ec79dbdd1ee13812f5946dbb2f35e.zip |
Datepicker: Removed unused isArray() function.
Diffstat (limited to 'ui/jquery.ui.datepicker.js')
-rw-r--r-- | ui/jquery.ui.datepicker.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/jquery.ui.datepicker.js b/ui/jquery.ui.datepicker.js index ffc57266c..e4196bedd 100644 --- a/ui/jquery.ui.datepicker.js +++ b/ui/jquery.ui.datepicker.js @@ -1804,12 +1804,6 @@ function extendRemove(target, props) { return target; }; -/* Determine whether an object is an array. */ -function isArray(a) { - return (a && (($.browser.safari && typeof a == 'object' && a.length) || - (a.constructor && a.constructor.toString().match(/\Array\(\)/)))); -}; - /* Invoke the datepicker functionality. @param options string - a command, optionally followed by additional parameters or Object - settings for attaching new datepicker functionality |