diff options
author | Richard Worth <rdworth@gmail.com> | 2008-10-01 11:52:39 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-10-01 11:52:39 +0000 |
commit | de7d22a02e72646d159f161ebfa07b6abadddbc8 (patch) | |
tree | 97fcdc154d0ca8abcd65884dc91967a2e626b0f6 /ui/effects.core.js | |
parent | 5b6323d0a3f2f49243e6c345c5f309df19b9e30e (diff) | |
download | jquery-ui-de7d22a02e72646d159f161ebfa07b6abadddbc8.tar.gz jquery-ui-de7d22a02e72646d159f161ebfa07b6abadddbc8.zip |
added missing semicolon
Diffstat (limited to 'ui/effects.core.js')
-rw-r--r-- | ui/effects.core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/effects.core.js b/ui/effects.core.js index 23e7052c9..04de92019 100644 --- a/ui/effects.core.js +++ b/ui/effects.core.js @@ -1,4 +1,4 @@ -/* +/* * jQuery UI Effects @VERSION * * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com) @@ -227,7 +227,7 @@ function getRGB(color) { // Look for rgba(0, 0, 0, 0) == transparent in Safari 3 if (result = /rgba\(0, 0, 0, 0\)/.exec(color)) - return colors['transparent'] + return colors['transparent']; // Otherwise, we're most likely dealing with a named color return colors[jQuery.trim(color).toLowerCase()]; |