aboutsummaryrefslogtreecommitdiffstats
path: root/resources/jquery.ui/jquery.ui.selectable.js
diff options
context:
space:
mode:
authorLeo Koppelkamm <diebuche@users.mediawiki.org>2011-04-14 13:09:02 +0000
committerLeo Koppelkamm <diebuche@users.mediawiki.org>2011-04-14 13:09:02 +0000
commit3897fa0691edccc3a03f3ca46fc4b31b70284abc (patch)
tree782586cd6a6136b27d179c35da34934f6e2a3081 /resources/jquery.ui/jquery.ui.selectable.js
parent08d460d384c149cbfef874acb843a9ba1fc84da6 (diff)
downloadmediawikicore-3897fa0691edccc3a03f3ca46fc4b31b70284abc.tar.gz
mediawikicore-3897fa0691edccc3a03f3ca46fc4b31b70284abc.zip
Updating jQuery UI to 1.8.11 (was 1.8.2). Also loosening button css, since j.ui.button works for non <button> elements as well
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/86046
Diffstat (limited to 'resources/jquery.ui/jquery.ui.selectable.js')
-rw-r--r--resources/jquery.ui/jquery.ui.selectable.js15
1 files changed, 6 insertions, 9 deletions
diff --git a/resources/jquery.ui/jquery.ui.selectable.js b/resources/jquery.ui/jquery.ui.selectable.js
index bc707d36ff92..e3b91328f519 100644
--- a/resources/jquery.ui/jquery.ui.selectable.js
+++ b/resources/jquery.ui/jquery.ui.selectable.js
@@ -1,10 +1,9 @@
-
/*
- * jQuery UI Selectable 1.8.2
+ * jQuery UI Selectable 1.8.11
*
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT (MIT-LICENSE.txt)
- * and GPL (GPL-LICENSE.txt) licenses.
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
*
* http://docs.jquery.com/UI/Selectables
*
@@ -13,7 +12,7 @@
* jquery.ui.mouse.js
* jquery.ui.widget.js
*/
-(function($) {
+(function( $, undefined ) {
$.widget("ui.selectable", $.ui.mouse, {
options: {
@@ -90,8 +89,6 @@ $.widget("ui.selectable", $.ui.mouse, {
$(options.appendTo).append(this.helper);
// position helper (lasso)
this.helper.css({
- "z-index": 100,
- "position": "absolute",
"left": event.clientX,
"top": event.clientY,
"width": 0,
@@ -263,7 +260,7 @@ $.widget("ui.selectable", $.ui.mouse, {
});
$.extend($.ui.selectable, {
- version: "1.8.2"
+ version: "1.8.11"
});
})(jQuery);