Side navigation
Ticket #2474: selectable.diff
File selectable.diff, 0.9 KB (added by thedoc, March 07, 2008 07:43PM UTC)
--- ui.selectable.js.old 2008-03-07 20:35:01.000000000 +0100
+++ ui.selectable.js 2008-03-07 20:03:31.000000000 +0100
@@ -5,6 +5,8 @@
$.fn.extend({
selectable: function(options) {
+ var args = Array.prototype.slice.call(arguments, 1);
+
return this.each(function() {
if (typeof options == "string") {
var select = $.data(this, "ui-selectable");
@@ -20,8 +22,7 @@
var instance = this;
this.element = $(element);
-
- $.data(this.element, "ui-selectable", this);
+ $.data(element, "ui-selectable", this);
this.element.addClass("ui-selectable");
this.options = $.extend({
@@ -91,8 +92,8 @@
this.element
.removeClass("ui-selectable ui-selectable-disabled")
.removeData("ui-selectable")
- .unbind(".selectable");
- this.removeMouseInteraction();
+ .unbind(".selectable")
+ .removeMouseInteraction();
},
enable: function() {
this.element.removeClass("ui-selectable-disabled");
Download in other formats:
Original Format
File selectable.diff, 0.9 KB (added by thedoc, March 07, 2008 07:43PM UTC)
--- ui.selectable.js.old 2008-03-07 20:35:01.000000000 +0100
+++ ui.selectable.js 2008-03-07 20:03:31.000000000 +0100
@@ -5,6 +5,8 @@
$.fn.extend({
selectable: function(options) {
+ var args = Array.prototype.slice.call(arguments, 1);
+
return this.each(function() {
if (typeof options == "string") {
var select = $.data(this, "ui-selectable");
@@ -20,8 +22,7 @@
var instance = this;
this.element = $(element);
-
- $.data(this.element, "ui-selectable", this);
+ $.data(element, "ui-selectable", this);
this.element.addClass("ui-selectable");
this.options = $.extend({
@@ -91,8 +92,8 @@
this.element
.removeClass("ui-selectable ui-selectable-disabled")
.removeData("ui-selectable")
- .unbind(".selectable");
- this.removeMouseInteraction();
+ .unbind(".selectable")
+ .removeMouseInteraction();
},
enable: function() {
this.element.removeClass("ui-selectable-disabled");