/* _/ _/_/ _/_/_/_/_/ _/ _/ _/ _/ _/_/ _/ _/ _/_/_/ _/_/_/ _/ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/ _/ _/ _/_/ _/_/_/ _/_/_/ _/ _/ _/ _/ 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);