From 31a11bace3b5c407f89f59805b80469abe8a581c Mon Sep 17 00:00:00 2001 From: TheTroll Date: Thu, 18 Mar 2010 17:27:48 +0100 Subject: cleanup --- .../.svn/text-base/jqtouch.transitions.js.svn-base | 60 ---------------------- 1 file changed, 60 deletions(-) delete mode 100644 jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base (limited to 'jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base') diff --git a/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base b/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base deleted file mode 100644 index 9d8970f..0000000 --- a/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base +++ /dev/null @@ -1,60 +0,0 @@ -/* - - _/ _/_/ _/_/_/_/_/ _/ - _/ _/ _/ _/_/ _/ _/ _/_/_/ _/_/_/ - _/ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ - _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ - _/ _/_/ _/ _/ _/_/ _/_/_/ _/_/_/ _/ _/ - _/ - _/ - - Created by David Kaneda - Documentation and issue tracking on Google Code - - Special thanks to Jonathan Stark - and pinch/zoom - - (c) 2009 by jQTouch project members. - See LICENSE.txt for license. - -*/ - -(function($) { - - $.fn.transition = function(css, options) { - return this.each(function(){ - var $el = $(this); - var defaults = { - speed : '300ms', - callback: null, - ease: 'ease-in-out' - }; - var settings = $.extend({}, defaults, options); - if(settings.speed === 0) { - $el.css(css); - window.setTimeout(settings.callback, 0); - } else { - if ($.browser.safari) - { - var s = []; - for(var i in css) { - s.push(i); - } - $el.css({ - webkitTransitionProperty: s.join(", "), - webkitTransitionDuration: settings.speed, - webkitTransitionTimingFunction: settings.ease - }); - if (settings.callback) { - $el.one('webkitTransitionEnd', settings.callback); - } - setTimeout(function(el){ el.css(css) }, 0, $el); - } - else - { - $el.animate(css, settings.speed, settings.callback); - } - } - }); - } -})(jQuery); \ No newline at end of file -- cgit v1.2.3