X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Feffects.js;h=73d94ef3489b6f435a5d3c03e907977c4b73e920;hb=fc5b69fc706a6025e5084d4b86adb3b97840c84f;hp=65b9e0f97368a249bab9326bd22d73c8caefcb0a;hpb=492a2e2c5360a193b867df53e157a32af65f3f7e;p=jquery.git diff --git a/src/effects.js b/src/effects.js index 65b9e0f..73d94ef 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 ) {