diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-18 17:25:40 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-18 17:25:40 +0100 |
commit | 84a7173ff812d7ed510ccf6568b791fbb464706f (patch) | |
tree | ad78d48ef9f4220817102bcd1d493bee8cdbd9b9 /themes/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base | |
parent | 1bf6db40207a6e967f896bd3d9034337ce22b84a (diff) | |
parent | 816d55f57ec56f4f306585075ac43e011bcb9fea (diff) | |
download | istreamdev-84a7173ff812d7ed510ccf6568b791fbb464706f.tar.gz istreamdev-84a7173ff812d7ed510ccf6568b791fbb464706f.tar.bz2 |
Merge branch 'jquery' of projects.vdr-developer.org:istreamdev into jquery
* 'jquery' of projects.vdr-developer.org:istreamdev:
clean themes rep
Diffstat (limited to 'themes/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base')
-rw-r--r-- | themes/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/themes/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base b/themes/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base deleted file mode 100644 index 9d8970f..0000000 --- a/themes/jqtouch/.svn/text-base/jqtouch.transitions.js.svn-base +++ /dev/null @@ -1,60 +0,0 @@ -/* - - _/ _/_/ _/_/_/_/_/ _/ - _/ _/ _/ _/_/ _/ _/ _/_/_/ _/_/_/ - _/ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ - _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ - _/ _/_/ _/ _/ _/_/ _/_/_/ _/_/_/ _/ _/ - _/ - _/ - - Created by David Kaneda <http://www.davidkaneda.com> - Documentation and issue tracking on Google Code <http://code.google.com/p/jqtouch/> - - Special thanks to Jonathan Stark <http://jonathanstark.com/> - and pinch/zoom <http://www.pinchzoom.com/> - - (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 |