44 * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
55 * Dual licensed under the MIT (MIT-LICENSE.txt)
66 * and GPL (GPL-LICENSE.txt) licenses.
7- *
7+ *
88 * http://docs.jquery.com/UI/Effects/
99 */
1010; ( function ( $ ) {
@@ -299,41 +299,41 @@ var colors = {
299299 yellow :[ 255 , 255 , 0 ] ,
300300 transparent : [ 255 , 255 , 255 ]
301301} ;
302-
302+
303303/*
304304 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
305305 *
306306 * Uses the built in easing capabilities added In jQuery 1.1
307307 * to offer multiple easing options
308308 *
309309 * TERMS OF USE - jQuery Easing
310- *
311- * Open source under the BSD License.
312- *
310+ *
311+ * Open source under the BSD License.
312+ *
313313 * Copyright © 2008 George McGinley Smith
314314 * All rights reserved.
315- *
316- * Redistribution and use in source and binary forms, with or without modification,
315+ *
316+ * Redistribution and use in source and binary forms, with or without modification,
317317 * are permitted provided that the following conditions are met:
318- *
319- * Redistributions of source code must retain the above copyright notice, this list of
318+ *
319+ * Redistributions of source code must retain the above copyright notice, this list of
320320 * conditions and the following disclaimer.
321- * Redistributions in binary form must reproduce the above copyright notice, this list
322- * of conditions and the following disclaimer in the documentation and/or other materials
321+ * Redistributions in binary form must reproduce the above copyright notice, this list
322+ * of conditions and the following disclaimer in the documentation and/or other materials
323323 * provided with the distribution.
324- *
325- * Neither the name of the author nor the names of contributors may be used to endorse
324+ *
325+ * Neither the name of the author nor the names of contributors may be used to endorse
326326 * or promote products derived from this software without specific prior written permission.
327- *
328- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
327+ *
328+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
329329 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
330330 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
331331 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
332332 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
333- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
333+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
334334 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
335- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
336- * OF THE POSSIBILITY OF SUCH DAMAGE.
335+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
336+ * OF THE POSSIBILITY OF SUCH DAMAGE.
337337 *
338338*/
339339
@@ -449,7 +449,7 @@ jQuery.extend( jQuery.easing,
449449 return c * ( ( t = t / d - 1 ) * t * ( ( s + 1 ) * t + s ) + 1 ) + b ;
450450 } ,
451451 easeInOutBack : function ( x , t , b , c , d , s ) {
452- if ( s == undefined ) s = 1.70158 ;
452+ if ( s == undefined ) s = 1.70158 ;
453453 if ( ( t /= d / 2 ) < 1 ) return c / 2 * ( t * t * ( ( ( s *= ( 1.525 ) ) + 1 ) * t - s ) ) + b ;
454454 return c / 2 * ( ( t -= 2 ) * t * ( ( ( s *= ( 1.525 ) ) + 1 ) * t + s ) + 2 ) + b ;
455455 } ,
@@ -476,33 +476,33 @@ jQuery.extend( jQuery.easing,
476476/*
477477 *
478478 * TERMS OF USE - EASING EQUATIONS
479- *
480- * Open source under the BSD License.
481- *
479+ *
480+ * Open source under the BSD License.
481+ *
482482 * Copyright © 2001 Robert Penner
483483 * All rights reserved.
484- *
485- * Redistribution and use in source and binary forms, with or without modification,
484+ *
485+ * Redistribution and use in source and binary forms, with or without modification,
486486 * are permitted provided that the following conditions are met:
487- *
488- * Redistributions of source code must retain the above copyright notice, this list of
487+ *
488+ * Redistributions of source code must retain the above copyright notice, this list of
489489 * conditions and the following disclaimer.
490- * Redistributions in binary form must reproduce the above copyright notice, this list
491- * of conditions and the following disclaimer in the documentation and/or other materials
490+ * Redistributions in binary form must reproduce the above copyright notice, this list
491+ * of conditions and the following disclaimer in the documentation and/or other materials
492492 * provided with the distribution.
493- *
494- * Neither the name of the author nor the names of contributors may be used to endorse
493+ *
494+ * Neither the name of the author nor the names of contributors may be used to endorse
495495 * or promote products derived from this software without specific prior written permission.
496- *
497- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
496+ *
497+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
498498 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
499499 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
500500 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
501501 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
502- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
502+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
503503 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
504- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
505- * OF THE POSSIBILITY OF SUCH DAMAGE.
504+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
505+ * OF THE POSSIBILITY OF SUCH DAMAGE.
506506 *
507507 */
508508
0 commit comments