diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-10-08 08:07:54 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-10-08 08:07:54 -0400 |
commit | 09073f042e3a7336eccc5dd8e20b6ba5d7f4c9fa (patch) | |
tree | 297a7359b1872602dfa6e96b182af4739736aa6b /ui/jquery.effects.core.js | |
parent | 62799d9122068817cf98ae6012a639a93568031a (diff) | |
download | jquery-ui-09073f042e3a7336eccc5dd8e20b6ba5d7f4c9fa.tar.gz jquery-ui-09073f042e3a7336eccc5dd8e20b6ba5d7f4c9fa.zip |
Effects: Added borderColor to color animation list. Fixes #6164 - Effectts: Allow borderColor to be animated.
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 d052b3f86..49ab4e220 100644 --- a/ui/jquery.effects.core.js +++ b/ui/jquery.effects.core.js @@ -19,7 +19,7 @@ $.effects = {}; // override the animation for color styles $.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', - 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], + 'borderRightColor', 'borderTopColor', 'borderColor', 'color', 'outlineColor'], function(i, attr) { $.fx.step[attr] = function(fx) { if (!fx.colorInit) { |