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" );