]> source.dussan.org Git - jquery-ui.git/commitdiff
Core: Define $.curCSS if it doesn't exist for jQuery 1.8+ support.
authorScott González <scott.gonzalez@gmail.com>
Mon, 25 Jun 2012 14:19:09 +0000 (10:19 -0400)
committerScott González <scott.gonzalez@gmail.com>
Mon, 25 Jun 2012 14:19:09 +0000 (10:19 -0400)
ui/jquery.ui.core.js

index a1b2a083e53a499b9b6ac4dacc1eaa0c12bfaed7..53aa51b5f00ef77068806cea481fa717a835e386 100644 (file)
@@ -245,6 +245,11 @@ $(function() {
        body.removeChild( div ).style.display = "none";
 });
 
+// jQuery <1.4.3 uses curCSS, in 1.4.3 - 1.7.2 curCSS = css, 1.8+ only has css
+if ( !$.curCSS ) {
+       $.curCSS = $.css;
+}
+