Fixed more formatting/tab problems.
This commit is contained in:
parent
130b8a1c03
commit
f0034d64e3
|
@ -68,7 +68,8 @@ $.fn.load = function(a,o,f) {
|
|||
|
||||
var t = "GET";
|
||||
if ( o && o.constructor == Function ) {
|
||||
f = o; o = null;
|
||||
f = o;
|
||||
o = null;
|
||||
}
|
||||
if (o != null) {
|
||||
o = $.param(o);
|
||||
|
|
|
@ -2,6 +2,7 @@ var e = ["blur","focus","contextmenu","load","resize","scroll","unload",
|
|||
"click","dblclick","mousedown","mouseup","mouseenter","mouseleave",
|
||||
"mousemove","mouseover","mouseout","change","reset","select","submit",
|
||||
"keydown","keypress","keyup","abort","error","ready"];
|
||||
|
||||
for ( var i = 0; i < e.length; i++ ) {
|
||||
(function(){
|
||||
var o = e[i];
|
||||
|
|
164
fx/fx.js
164
fx/fx.js
|
@ -1,3 +1,88 @@
|
|||
$.speed = function(s,o) {
|
||||
if ( o && o.constructor == Function ) o = { onComplete: o };
|
||||
o = o || {};
|
||||
var ss = {"crawl":1200,"xslow":850,"slow":600,"medium":400,"fast":200,"xfast":75,"normal":400};
|
||||
o.duration = typeof s == "number" ? s : ss[s] || 400;
|
||||
return o;
|
||||
};
|
||||
|
||||
$.fn.hide = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.FadeSize(this,o).hide();
|
||||
}) : this._hide();
|
||||
};
|
||||
|
||||
$.fn.show = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.FadeSize(this,o).show();
|
||||
}) : this._show();
|
||||
};
|
||||
|
||||
$.fn.slideDown = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return this.each(function(){
|
||||
new fx.Resize(this,o).show("height");
|
||||
});
|
||||
};
|
||||
|
||||
$.fn.slideUp = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return this.each(function(){
|
||||
new fx.Resize(this,o).hide("height");
|
||||
});
|
||||
};
|
||||
|
||||
$.fn.fadeOut = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.Opacity(this,o).hide();
|
||||
}) : this._hide();
|
||||
};
|
||||
|
||||
$.fn.fadeIn = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.Opacity(this,o).show();
|
||||
}) : this._show();
|
||||
};
|
||||
|
||||
$.fn.center = function(f) {
|
||||
return this.each(function(){
|
||||
if ( !f && this.nodeName == 'IMG' &&
|
||||
!this.offsetWidth && !this.offsetHeight ) {
|
||||
var self = this;
|
||||
setTimeout(function(){
|
||||
$(self).center(true);
|
||||
}, 13);
|
||||
} else {
|
||||
var s = this.style;
|
||||
var p = this.parentNode;
|
||||
if ( $.css(p,"position") == 'static' )
|
||||
p.style.position = 'relative';
|
||||
s.position = 'absolute';
|
||||
s.left = parseInt(($.css(p,"width") - $.css(this,"width"))/2) + "px";
|
||||
s.top = parseInt(($.css(p,"height") - $.css(this,"height"))/2) + "px";
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
$.setAuto = function(e,p) {
|
||||
var a = e.style[p];
|
||||
var o = $.css(e,p);
|
||||
e.style[p] = 'auto';
|
||||
var n = $.css(e,p);
|
||||
if ( o != n )
|
||||
e.style[p] = a;
|
||||
};
|
||||
|
||||
/*
|
||||
* I originally wrote fx() as a clone of moo.fx and in the process
|
||||
* of making it small in size the code became illegible to sane
|
||||
* people. You've been warned.
|
||||
*/
|
||||
|
||||
function fx(el,op,ty,tz){
|
||||
var z = this;
|
||||
z.a = function(){z.el.style[ty]=z.now+z.o.unit};
|
||||
|
@ -89,82 +174,3 @@ fx.FadeSize = function(e,o){
|
|||
z[j] = function(a,b){p[j]();r[j](a,b);};
|
||||
})()}
|
||||
};
|
||||
|
||||
$.speed = function(s,o) {
|
||||
if ( o && o.constructor == Function ) o = { onComplete: o };
|
||||
o = o || {};
|
||||
var ss = {"crawl":1200,"xslow":850,"slow":600,"medium":400,"fast":200,"xfast":75,"normal":400};
|
||||
o.duration = typeof s == "number" ? s : ss[s] || 400;
|
||||
return o;
|
||||
};
|
||||
|
||||
$.fn.hide = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.FadeSize(this,o).hide();
|
||||
}) : this._hide();
|
||||
};
|
||||
|
||||
$.fn.show = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.FadeSize(this,o).show();
|
||||
}) : this._show();
|
||||
};
|
||||
|
||||
$.fn.slideDown = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return this.each(function(){
|
||||
new fx.Resize(this,o).show("height");
|
||||
});
|
||||
};
|
||||
|
||||
$.fn.slideUp = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return this.each(function(){
|
||||
new fx.Resize(this,o).hide("height");
|
||||
});
|
||||
};
|
||||
|
||||
$.fn.fadeOut = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.Opacity(this,o).hide();
|
||||
}) : this._hide();
|
||||
};
|
||||
|
||||
$.fn.fadeIn = function(a,o) {
|
||||
o = $.speed(a,o);
|
||||
return a ? this.each(function(){
|
||||
new fx.Opacity(this,o).show();
|
||||
}) : this._show();
|
||||
};
|
||||
|
||||
$.fn.center = function(f) {
|
||||
return this.each(function(){
|
||||
if ( !f && this.nodeName == 'IMG' &&
|
||||
!this.offsetWidth && !this.offsetHeight ) {
|
||||
var self = this;
|
||||
setTimeout(function(){
|
||||
$(self).center(true);
|
||||
}, 13);
|
||||
} else {
|
||||
var s = this.style;
|
||||
var p = this.parentNode;
|
||||
if ( $.css(p,"position") == 'static' )
|
||||
p.style.position = 'relative';
|
||||
s.position = 'absolute';
|
||||
s.left = parseInt(($.css(p,"width") - $.css(this,"width"))/2) + "px";
|
||||
s.top = parseInt(($.css(p,"height") - $.css(this,"height"))/2) + "px";
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
$.setAuto = function(e,p) {
|
||||
var a = e.style[p];
|
||||
var o = $.css(e,p);
|
||||
e.style[p] = 'auto';
|
||||
var n = $.css(e,p);
|
||||
if ( o != n )
|
||||
e.style[p] = a;
|
||||
};
|
||||
|
|
8
jquery/jquery.js
vendored
8
jquery/jquery.js
vendored
|
@ -234,10 +234,6 @@ function $(a,c) {
|
|||
return this;
|
||||
},
|
||||
|
||||
parents: function(a) {
|
||||
return this;
|
||||
},
|
||||
|
||||
filter: function(t) {
|
||||
this.cur = $.filter(t,this.cur).r;
|
||||
return this;
|
||||
|
@ -586,7 +582,9 @@ $.parents = function(a){
|
|||
return b;
|
||||
};
|
||||
|
||||
$.cleanSpaces = function(t){return t.replace(/^\s+|\s+$/g, '')};
|
||||
$.cleanSpaces = function(t){
|
||||
return t.replace(/^\s+|\s+$/g, '')
|
||||
};
|
||||
|
||||
$.ofType = function(a,n,e) {
|
||||
var t = $.grep($.sibling(a),function(b){return b.nodeName == a.nodeName});
|
||||
|
|
Loading…
Reference in a new issue