2015-07-15 20:43:33 +00:00
|
|
|
/*!
|
|
|
|
* jQuery UI :data @VERSION
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://jqueryui.com
|
2015-07-15 20:43:33 +00:00
|
|
|
*
|
2022-07-19 07:36:55 +00:00
|
|
|
* Copyright OpenJS Foundation and other contributors
|
2015-07-15 20:43:33 +00:00
|
|
|
* Released under the MIT license.
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://jquery.org/license
|
2015-07-15 20:43:33 +00:00
|
|
|
*/
|
|
|
|
|
2016-01-15 02:07:53 +00:00
|
|
|
//>>label: :data Selector
|
2015-07-15 20:43:33 +00:00
|
|
|
//>>group: Core
|
|
|
|
//>>description: Selects elements which have data stored under the specified key.
|
2024-04-26 14:25:34 +00:00
|
|
|
//>>docs: https://api.jqueryui.com/data-selector/
|
2015-07-15 20:43:33 +00:00
|
|
|
|
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-07-15 20:43:33 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
|
|
|
define( [ "jquery", "./version" ], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
} )( function( $ ) {
|
|
|
|
"use strict";
|
|
|
|
|
2016-12-02 13:41:30 +00:00
|
|
|
return $.extend( $.expr.pseudos, {
|
2021-04-09 21:36:00 +00:00
|
|
|
data: $.expr.createPseudo( function( dataName ) {
|
|
|
|
return function( elem ) {
|
|
|
|
return !!$.data( elem, dataName );
|
|
|
|
};
|
|
|
|
} )
|
2015-07-15 20:43:33 +00:00
|
|
|
} );
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|