aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects.core.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-10-01 11:52:39 +0000
committerRichard Worth <rdworth@gmail.com>2008-10-01 11:52:39 +0000
commitde7d22a02e72646d159f161ebfa07b6abadddbc8 (patch)
tree97fcdc154d0ca8abcd65884dc91967a2e626b0f6 /ui/effects.core.js
parent5b6323d0a3f2f49243e6c345c5f309df19b9e30e (diff)
downloadjquery-ui-de7d22a02e72646d159f161ebfa07b6abadddbc8.tar.gz
jquery-ui-de7d22a02e72646d159f161ebfa07b6abadddbc8.zip
added missing semicolon
Diffstat (limited to 'ui/effects.core.js')
-rw-r--r--ui/effects.core.js4
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()];