diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-06 19:06:02 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-06 19:06:02 +0100 |
commit | 4d483ae06f8e7f90c76d2f4c6bb2745dc573c89e (patch) | |
tree | e9f9b71e2374c5417e13645c78c702a12c52fc98 /chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js | |
parent | e3533b5da0d9e78e427e1f34dd723a8d34404459 (diff) | |
download | Chimère-4d483ae06f8e7f90c76d2f4c6bb2745dc573c89e.tar.bz2 Chimère-4d483ae06f8e7f90c76d2f4c6bb2745dc573c89e.zip |
Update bsmselect to last version
Diffstat (limited to 'chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js')
-rw-r--r-- | chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js b/chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js index a743a07..683d865 100644 --- a/chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js +++ b/chimere/static/bsmSelect/js/jquery.bsmselect.compatibility.js @@ -1,17 +1,17 @@ /* * Better Select Multiple Compatibility Plugin - jQuery Plugin * - * Copyright (c) 2010 by Victor Berchet - http://www.github.com/vicb + * Copyright (c) 2010-2011 by Victor Berchet - http://www.github.com/vicb * * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. * - * version: v1.0.0 - 2010-09-05 + * version: v1.0.1 - 2011-11-14 */ (function($) { $.bsmSelect.plugins.compatibility = function() { - if (!(this instanceof arguments.callee)) { - return new arguments.callee(); + if (!(this instanceof $.bsmSelect.plugins.compatibility)) { + return new $.bsmSelect.plugins.compatibility(); } } @@ -31,7 +31,7 @@ o.showEffect = $.bsmSelect.effects[o.animate.add]; } else { o.showEffect = $.bsmSelect.effects.show; - } + } if ($.isFunction(o.animate.drop)) { o.hideEffect = o.animate.drop; |