diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:07:08 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:23 -0400 |
commit | 824e05c337f92eb114b65e00fce8c47c5c94cce6 (patch) | |
tree | 1adf762be43ca004d2dfa8cf6c893350ebaefef0 | |
parent | 7e434052696ddf305665816a41c8ec8b4f7c056e (diff) | |
download | jquery-ui-824e05c337f92eb114b65e00fce8c47c5c94cce6.tar.gz jquery-ui-824e05c337f92eb114b65e00fce8c47c5c94cce6.zip |
Selectable: Style updates
Ref #14246
Ref gh-1588
-rw-r--r-- | tests/unit/selectable/common.js | 2 | ||||
-rw-r--r-- | ui/widgets/selectable.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/selectable/common.js b/tests/unit/selectable/common.js index 317fde562..460ea0602 100644 --- a/tests/unit/selectable/common.js +++ b/tests/unit/selectable/common.js @@ -15,7 +15,7 @@ common.testWidget( "selectable", { filter: "*", tolerance: "touch", - // callbacks + // Callbacks create: null, selected: null, selecting: null, diff --git a/ui/widgets/selectable.js b/ui/widgets/selectable.js index 4edf46ad6..0dadac962 100644 --- a/ui/widgets/selectable.js +++ b/ui/widgets/selectable.js @@ -40,7 +40,7 @@ return $.widget("ui.selectable", $.ui.mouse, { filter: "*", tolerance: "touch", - // callbacks + // Callbacks selected: null, selecting: null, start: null, @@ -55,7 +55,7 @@ return $.widget("ui.selectable", $.ui.mouse, { this.dragged = false; - // cache selectee children based on filter + // Cache selectee children based on filter this.refresh = function() { that.selectees = $(that.options.filter, that.element[0]); that._addClass( that.selectees, "ui-selectee" ); |