From a166860a19a5d0de4529e4df4cb6647b3812577e Mon Sep 17 00:00:00 2001 From: jeresig Date: Thu, 9 Sep 2010 15:45:24 -0400 Subject: [PATCH] Adding in a couple private variables to effects.js that were in css.js. --- src/effects.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/effects.js b/src/effects.js index 130b676..352ad4a 100644 --- a/src/effects.js +++ b/src/effects.js @@ -3,6 +3,7 @@ var elemdisplay = {}, rfxtypes = /toggle|show|hide/, rfxnum = /^([+\-]=)?([\d+.\-]+)(.*)$/, + rdashAlpha = /-([a-z])/ig, timerId, fxAttrs = [ // height animations @@ -11,7 +12,11 @@ var elemdisplay = {}, [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ], // opacity animations [ "opacity" ] - ]; + ], + + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; jQuery.fn.extend({ show: function( speed, callback ) { -- 1.7.10.4