diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-02-12 09:01:06 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-02-12 09:01:06 -0500 |
commit | 609243b21d2530ecd5e8e19e99951decc8587285 (patch) | |
tree | 7a13a33fa14348553e9378f8349177dbc9334744 /ui/jquery.effects.core.js | |
parent | 00b69db88365e41afbed29b9fed3592e0703b8ed (diff) | |
download | jquery-ui-609243b21d2530ecd5e8e19e99951decc8587285.tar.gz jquery-ui-609243b21d2530ecd5e8e19e99951decc8587285.zip |
Use jQuery.css() instead of deprecated jQuery.curCSS().
Diffstat (limited to 'ui/jquery.effects.core.js')
-rw-r--r-- | ui/jquery.effects.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js index 68ed637e1..b28e4c4ee 100644 --- a/ui/jquery.effects.core.js +++ b/ui/jquery.effects.core.js @@ -77,7 +77,7 @@ function getColor(elem, attr) { var color; do { - color = $.curCSS(elem, attr); + color = $.css(elem, attr); // Keep going until we find an element that has color, or we hit the body if ( color != "" && color !== "transparent" || $.nodeName(elem, "body") ) |