r760 - trunk/ui
r760 - trunk/ui
Author: rdworth
Date: Wed Oct 1 04:52:39 2008
New Revision: 760
Modified:
trunk/ui/effects.core.js
Log:
added missing semicolon
Modified: trunk/ui/effects.core.js
==============================================================================
--- trunk/ui/effects.core.js (original)
+++ trunk/ui/effects.core.js Wed Oct 1 04:52:39 2008
@@ -1,4 +1,4 @@
-/*
+/*
* jQuery UI Effects @VERSION
*
* Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
@@ -227,7 +227,7 @@
// 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()];