Skip to content
Permalink
Browse files
Adding in a couple private variables to effects.js that were in css.js.
  • Loading branch information
jeresig committed Sep 9, 2010
1 parent 7c85885 commit a166860
Showing 1 changed file with 6 additions and 1 deletion.
@@ -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 ) {

0 comments on commit a166860

Please sign in to comment.