diff options
Diffstat (limited to 'extensions/.svn/text-base/jqt.autotitles.js.svn-base')
-rw-r--r-- | extensions/.svn/text-base/jqt.autotitles.js.svn-base | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/extensions/.svn/text-base/jqt.autotitles.js.svn-base b/extensions/.svn/text-base/jqt.autotitles.js.svn-base deleted file mode 100644 index 74ba6f8..0000000 --- a/extensions/.svn/text-base/jqt.autotitles.js.svn-base +++ /dev/null @@ -1,51 +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($) { - 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 |