<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * jQuery UI Tabbable 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */

//&gt;&gt;label: :tabbable Selector
//&gt;&gt;group: Core
//&gt;&gt;description: Selects elements which can be tabbed to.
//&gt;&gt;docs: http://api.jqueryui.com/tabbable-selector/

( function( factory ) {
    "use strict";

    if ( typeof define === "function" &amp;&amp; define.amd ) {

        // AMD. Register as an anonymous module.
        define( [ "jquery", "./version", "./focusable" ], factory );
    } else {

        // Browser globals
        factory( jQuery );
    }
} )( function( $ ) {
    "use strict";

    return $.extend( $.expr.pseudos, {
        tabbable: function( element ) {
            var tabIndex = $.attr( element, "tabindex" ),
                hasTabindex = tabIndex != null;
            return ( !hasTabindex || tabIndex &gt;= 0 ) &amp;&amp; $.ui.focusable( element, hasTabindex );
        }
    } );

} );
</pre></body></html>