]> source.dussan.org Git - jquery-ui.git/commitdiff
Core: Shortened data selector implementation and moved down to other core modifications.
authorScott González <scott.gonzalez@gmail.com>
Fri, 15 Aug 2008 00:31:50 +0000 (00:31 +0000)
committerScott González <scott.gonzalez@gmail.com>
Fri, 15 Aug 2008 00:31:50 +0000 (00:31 +0000)
ui/ui.core.js

index f3d76132a81cf25c82e8699377485cd8a87bebac..2ad091bcfa5d652ddbf7939202969a1332c74187 100644 (file)
@@ -9,11 +9,6 @@
  */
 ;(function($) {
 
-// This adds a selector to check if data exists.
-jQuery.extend(jQuery.expr[':'], { 
-       data: "jQuery.data(a, m[3])"
-});
-
 $.ui = {
        plugin: {
                add: function(module, option, set) {
@@ -76,6 +71,9 @@ $.ui = {
 
 /** jQuery core modifications and additions **/
 
+// This adds a selector to check if data exists.
+jQuery.expr[':'].data = "jQuery.data(a, m[3])";
+
 var _remove = $.fn.remove;
 $.fn.remove = function() {
        $("*", this).add(this).triggerHandler("remove");