mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Adding in a couple private variables to effects.js that were in css.js.
This commit is contained in:
parent
7c8588530a
commit
a166860a19
7
src/effects.js
vendored
7
src/effects.js
vendored
@ -3,6 +3,7 @@
|
|||||||
var elemdisplay = {},
|
var elemdisplay = {},
|
||||||
rfxtypes = /toggle|show|hide/,
|
rfxtypes = /toggle|show|hide/,
|
||||||
rfxnum = /^([+\-]=)?([\d+.\-]+)(.*)$/,
|
rfxnum = /^([+\-]=)?([\d+.\-]+)(.*)$/,
|
||||||
|
rdashAlpha = /-([a-z])/ig,
|
||||||
timerId,
|
timerId,
|
||||||
fxAttrs = [
|
fxAttrs = [
|
||||||
// height animations
|
// height animations
|
||||||
@ -11,7 +12,11 @@ var elemdisplay = {},
|
|||||||
[ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
|
[ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
|
||||||
// opacity animations
|
// opacity animations
|
||||||
[ "opacity" ]
|
[ "opacity" ]
|
||||||
];
|
],
|
||||||
|
|
||||||
|
fcamelCase = function( all, letter ) {
|
||||||
|
return letter.toUpperCase();
|
||||||
|
};
|
||||||
|
|
||||||
jQuery.fn.extend({
|
jQuery.fn.extend({
|
||||||
show: function( speed, callback ) {
|
show: function( speed, callback ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user