mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Added some final global variable tweaks - no more namespace leaking!
This commit is contained in:
parent
4986837802
commit
956529c7be
4
fx/fx.js
4
fx/fx.js
@ -87,6 +87,8 @@ $.setAuto = function(e,p) {
|
||||
|
||||
$.fx = function(el,op,ty,tz){
|
||||
var z = this;
|
||||
z.el = el.constructor==String?document.getElementById(el):el;
|
||||
var y = z.el.style;
|
||||
z.a = function(){z.el.style[ty]=z.now+z.o.unit;};
|
||||
z.max = function(){return z.el["io"+ty]||z.el["natural"+tz]||z.el["scroll"+tz]||z.cur();};
|
||||
z.cur = function(){return parseInt($.getCSS(z.el,ty),10);};
|
||||
@ -96,8 +98,6 @@ $.fx = function(el,op,ty,tz){
|
||||
z.toggle = function(){if(z.cur()>0){z.hide();}else{z.show();}};
|
||||
z.modify = function(a){z.custom(z.cur(),z.cur()+a);};
|
||||
z.clear = function(){clearInterval(z.timer);z.timer=null;};
|
||||
z.el = el.constructor==String?document.getElementById(el):el;
|
||||
var y = z.el.style;
|
||||
z.oo = y.overflow;
|
||||
y.overflow = "hidden";
|
||||
z.o = {
|
||||
|
3
jquery/jquery.js
vendored
3
jquery/jquery.js
vendored
@ -9,6 +9,9 @@
|
||||
* $Rev$
|
||||
*/
|
||||
|
||||
/* For JSLint (jslint.com): */
|
||||
/*extern ActiveXObject Prototype setTimeout setInterval clearInterval document window XMLHttpRequest navigator*/
|
||||
|
||||
function $(a,c) {
|
||||
var $a = a || $.context || document;
|
||||
var $c = c && c.$jquery && c.get(0) || c;
|
||||
|
Loading…
Reference in New Issue
Block a user