Index: /Users/team/fluid-repos/fluid-components/src/webapp/fluid-components/js/fluid/Reorderer.js =================================================================== --- /Users/team/fluid-repos/fluid-components/src/webapp/fluid-components/js/fluid/Reorderer.js (revision 5688) +++ /Users/team/fluid-repos/fluid-components/src/webapp/fluid-components/js/fluid/Reorderer.js (working copy) @@ -437,7 +437,7 @@ selectables.ariaState("selected", "false"); selectables.ariaState("disabled", "false"); - thatReorderer.container.selectable({ + thatReorderer.container.focusable({ selectableElements: selectables, selectablesTabindex: thatReorderer.options.selectablesTabindex, direction: null Index: /Users/team/fluid-repos/fluid-components/src/webapp/fluid-components/js/jquery/jquery.keyboard-a11y.js =================================================================== --- /Users/team/fluid-repos/fluid-components/src/webapp/fluid-components/js/jquery/jquery.keyboard-a11y.js (revision 5688) +++ /Users/team/fluid-repos/fluid-components/src/webapp/fluid-components/js/jquery/jquery.keyboard-a11y.js (working copy) @@ -489,8 +489,8 @@ * Options provide configurability, including direction: and autoSelectFirstItem: * Currently supported directions are jQuery.a11y.directions.HORIZONTAL and VERTICAL. */ - $.fn.selectable = function(options) { - var that = makeElementsSelectable(this, this.selectable.defaults, options); + $.fn.focusable = function(options) { + var that = makeElementsSelectable(this, this.focusable.defaults, options); setData(this, CONTEXT_KEY, that); return this; }; @@ -556,7 +556,7 @@ keys: [$.a11y.keys.ENTER, $.a11y.keys.SPACE] }; - $.fn.selectable.defaults = { + $.fn.focusable.defaults = { direction: $.a11y.orientation.VERTICAL, selectablesTabindex: -1, autoSelectFirstItem: true,