From de7d22a02e72646d159f161ebfa07b6abadddbc8 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Wed, 1 Oct 2008 11:52:39 +0000 Subject: [PATCH] added missing semicolon --- ui/effects.core.js | 4 ++-- 1 file 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()]; -- 2.39.5