2015-07-16 00:20:41 +00:00
|
|
|
/*!
|
|
|
|
* jQuery UI Tabbable @VERSION
|
|
|
|
* http://jqueryui.com
|
|
|
|
*
|
|
|
|
* Copyright jQuery Foundation and other contributors
|
|
|
|
* Released under the MIT license.
|
|
|
|
* http://jquery.org/license
|
|
|
|
*/
|
|
|
|
|
2016-01-15 02:07:53 +00:00
|
|
|
//>>label: :tabbable Selector
|
2015-07-16 00:20:41 +00:00
|
|
|
//>>group: Core
|
|
|
|
//>>description: Selects elements which can be tabbed to.
|
|
|
|
//>>docs: http://api.jqueryui.com/tabbable-selector/
|
|
|
|
|
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-07-16 00:20:41 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
|
|
|
define( [ "jquery", "./version", "./focusable" ], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
} )( function( $ ) {
|
|
|
|
"use strict";
|
2015-07-16 00:20:41 +00:00
|
|
|
|
2016-12-02 13:41:30 +00:00
|
|
|
return $.extend( $.expr.pseudos, {
|
2015-07-16 00:20:41 +00:00
|
|
|
tabbable: function( element ) {
|
|
|
|
var tabIndex = $.attr( element, "tabindex" ),
|
|
|
|
hasTabindex = tabIndex != null;
|
|
|
|
return ( !hasTabindex || tabIndex >= 0 ) && $.ui.focusable( element, hasTabindex );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|