Audit-DBI-TT2
view release on metacpan or search on metacpan
examples/js/jquery-1.9.1.js view on Meta::CPAN
862486258626862786288629863086318632863386348635863686378638863986408641864286438644
abort: function() {
if
( callback ) {
callback( undefined, true );
}
}
};
}
});
}
var fxNow, timerId,
rfxtypes = /^(?:toggle|show|hide)$/,
rfxnum = new RegExp(
"^(?:([+-])=|)("
+ core_pnum +
")([a-z%]*)$"
,
"i"
),
rrun = /queueHooks$/,
animationPrefilters = [ defaultPrefilter ],
tweeners = {
"*"
: [function( prop, value ) {
var end, unit,
tween = this.createTween( prop, value ),
parts = rfxnum.
exec
( value ),
target = tween.cur(),
examples/js/jquery-1.9.1.js view on Meta::CPAN
878587868787878887898790879187928793879487958796879787988799880088018802880388048805
return
result;
}
}
createTweens( animation, props );
if
( jQuery.isFunction( animation.opts.start ) ) {
animation.opts.start.call( elem, animation );
}
jQuery.fx.timer(
jQuery.extend( tick, {
elem: elem,
anim: animation,
queue: animation.opts.queue
})
);
// attach callbacks from options
return
animation.progress( animation.opts.progress )
.done( animation.opts.done, animation.opts.complete )
examples/js/jquery-1.9.1.js view on Meta::CPAN
91459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221
clearQueue = type;
type = undefined;
}
if
( clearQueue && type !== false ) {
this.queue( type ||
"fx"
, [] );
}
return
this.
each
(function() {
var dequeue = true,
index
= type != null && type +
"queueHooks"
,
timers = jQuery.timers,
data = jQuery._data( this );
if
(
index
) {
if
( data[
index
] && data[
index
].stop ) {
stopQueue( data[
index
] );
}
}
else
{
for
(
index
in data ) {
if
( data[
index
] && data[
index
].stop && rrun.test(
index
) ) {
stopQueue( data[
index
] );
}
}
}
for
(
index
= timers.
length
;
index
--; ) {
if
( timers[
index
].elem === this && (type == null || timers[
index
].queue === type) ) {
timers[
index
].anim.stop( gotoEnd );
dequeue = false;
timers.
splice
(
index
, 1 );
}
}
// start the
next
in the queue
if
the
last
step wasn't forced
// timers currently will call their complete callbacks, which will dequeue
// but only
if
they were gotoEnd
if
( dequeue || !gotoEnd ) {
jQuery.dequeue( this, type );
}
});
},
finish: function( type ) {
if
( type !== false ) {
type = type ||
"fx"
;
}
return
this.
each
(function() {
var
index
,
data = jQuery._data( this ),
queue = data[ type +
"queue"
],
hooks = data[ type +
"queueHooks"
],
timers = jQuery.timers,
length
= queue ? queue.
length
: 0;
// enable finishing flag on private data
data.finish = true;
// empty the queue first
jQuery.queue( this, type, [] );
if
( hooks && hooks.cur && hooks.cur.finish ) {
hooks.cur.finish.call( this );
}
// look
for
any active animations, and finish them
for
(
index
= timers.
length
;
index
--; ) {
if
( timers[
index
].elem === this && timers[
index
].queue === type ) {
timers[
index
].anim.stop( true );
timers.
splice
(
index
, 1 );
}
}
// look
for
any animations in the old queue and finish them
for
(
index
= 0;
index
<
length
;
index
++ ) {
if
( queue[
index
] && queue[
index
].finish ) {
queue[
index
].finish.call( this );
}
}
examples/js/jquery-1.9.1.js view on Meta::CPAN
929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369jQuery.easing = {
linear: function( p ) {
return
p;
},
swing: function( p ) {
return
0.5 - Math.
cos
( p
*Math
.PI ) / 2;
}
};
jQuery.timers = [];
jQuery.fx = Tween.
prototype
.init;
jQuery.fx.tick = function() {
var timer,
timers = jQuery.timers,
i = 0;
fxNow = jQuery.now();
for
( ; i < timers.
length
; i++ ) {
timer = timers[ i ];
// Checks the timer
has
not already been removed
if
( !timer() && timers[ i ] === timer ) {
timers.
splice
( i--, 1 );
}
}
if
( !timers.
length
) {
jQuery.fx.stop();
}
fxNow = undefined;
};
jQuery.fx.timer = function( timer ) {
if
( timer() && jQuery.timers.
push
( timer ) ) {
jQuery.fx.start();
}
};
jQuery.fx.interval = 13;
jQuery.fx.start = function() {
if
( !timerId ) {
timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
}
};
jQuery.fx.stop = function() {
clearInterval( timerId );
timerId = null;
};
jQuery.fx.speeds = {
slow: 600,
fast: 200,
// Default speed
_default: 400
};
// Back Compat <1.8 extension point
jQuery.fx.step = {};
if
( jQuery.expr && jQuery.expr.filters ) {
jQuery.expr.filters.animated = function( elem ) {
return
jQuery.
grep
(jQuery.timers, function( fn ) {
return
elem === fn.elem;
}).
length
;
};
}
jQuery.fn.offset = function( options ) {
if
( arguments.
length
) {
return
options === undefined ?
this :
this.
each
(function( i ) {
jQuery.offset.setOffset( this, options, i );
examples/js/jquery-1.9.1.min.js view on Meta::CPAN
12345/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
//@ sourceMappingURL=jquery.min.
map
*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p=
"1.9.1"
,f=c.concat,d=c.
push
,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){
return
new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?...
return
(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){
return
b.nodeName(this,
"form"
)?!1:(b.event.add(this,"click._submit keypress._...
}b.merge(d,s.childNodes),s.textContent=
""
;
while
(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}
else
d.
push
(t.createTextNode(o));s&
&f
.removeChild(s),b.support.appendChecked||b.
grep
(Ot(d,
"input"
),Bt),h=0;
while
(o=d[h++])
if
((!r||-1===b.inArray(o,...
( run in 0.300 second using v1.01-cache-2.11-cpan-26ccb49234f )