Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Core: Move data selector from core into its own module
Ref #9647
- Loading branch information
Showing
6 changed files
with
45 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
define( [ | ||
"jquery", | ||
"ui/core" | ||
"ui/core", | ||
"ui/data" | ||
], function( $ ) { | ||
|
||
module( "core - selectors" ); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -23,6 +23,7 @@ | ||
define([ | ||
"jquery", | ||
"./core", | ||
"./data", | ||
"./version", | ||
"./widget" | ||
], factory ); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/*! | ||
* jQuery UI :data @VERSION | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
*/ | ||
|
||
//>>label: :data | ||
//>>group: Core | ||
//>>description: Selects elements which have data stored under the specified key. | ||
//>>docs: http://api.jqueryui.com/data-selector/ | ||
|
||
( function( factory ) { | ||
if ( typeof define === "function" && define.amd ) { | ||
|
||
// AMD. Register as an anonymous module. | ||
define( [ "jquery", "./version" ], factory ); | ||
} else { | ||
|
||
// Browser globals | ||
factory( jQuery ); | ||
} | ||
} ( function( $ ) { | ||
return $.extend( $.expr[ ":" ], { | ||
data: $.expr.createPseudo ? | ||
$.expr.createPseudo( function( dataName ) { | ||
return function( elem ) { | ||
return !!$.data( elem, dataName ); | ||
}; | ||
} ) : | ||
// support: jQuery <1.8 | ||
function( elem, i, match ) { | ||
return !!$.data( elem, match[ 3 ] ); | ||
} | ||
} ); | ||
} ) ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -21,8 +21,9 @@ | ||
define([ | ||
"jquery", | ||
"./core", | ||
"./version", | ||
"./data", | ||
"./mouse", | ||
"./version", | ||
"./widget" | ||
], factory ); | ||
} else { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -21,6 +21,7 @@ | ||
define([ | ||
"jquery", | ||
"./core", | ||
"./data", | ||
"./mouse", | ||
"./version", | ||
"./widget" | ||