From 816d55f57ec56f4f306585075ac43e011bcb9fea Mon Sep 17 00:00:00 2001 From: Alib Date: Thu, 18 Mar 2010 17:21:19 +0100 Subject: clean themes rep --- themes/extensions/jqt.autotitles.js | 51 ------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 themes/extensions/jqt.autotitles.js (limited to 'themes/extensions/jqt.autotitles.js') diff --git a/themes/extensions/jqt.autotitles.js b/themes/extensions/jqt.autotitles.js deleted file mode 100644 index f10142b..0000000 --- a/themes/extensions/jqt.autotitles.js +++ /dev/null @@ -1,51 +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($) { - if ($.jQTouch) - { - $.jQTouch.addExtension(function AutoTitles(jQT){ - - var titleSelector='.toolbar h1'; - - $(function(){ - $('#jqt').bind('pageAnimationStart', function(e, data){ - if (data.direction === 'in'){ - var $title = $(titleSelector, $(e.target)); - var $ref = $(e.target).data('referrer'); - if ($title.length && $ref){ - $title.html($ref.text()); - } - } - }); - }); - - function setTitleSelector(ts){ - titleSelector=ts; - } - - return { - setTitleSelector: setTitleSelector - } - - }); - } -})(jQuery); \ No newline at end of file -- cgit v1.2.3