summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js
Side-by-side diff
Diffstat (limited to 'frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js b/frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js
deleted file mode 100644
index 94f3d9b..0000000
--- a/frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js
+++ b/dev/null
@@ -1,52 +0,0 @@
-/*
-
- _/ _/_/ _/_/_/_/_/ _/
- _/ _/ _/ _/_/ _/ _/ _/_/_/ _/_/_/
- _/ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/
- _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
- _/ _/_/ _/ _/ _/_/ _/_/_/ _/_/_/ _/ _/
- _/
- _/
-
- Created by David Kaneda <http://www.davidkaneda.com>
- Maintained by Thomas Yip <http://beedesk.com/>
- Sponsored by Sencha Labs <http://www.sencha.com/>
- Special thanks to Jonathan Stark <http://www.jonathanstark.com/>
-
- Documentation and issue tracking on GitHub <http://github.com/senchalabs/jQTouch/>
-
- (c) 2009-2011 Sencha Labs
- jQTouch may be freely distributed under the MIT 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.text() === ''){
- $title.html($ref.text());
- }
- }
- });
- });
-
- function setTitleSelector(ts){
- titleSelector=ts;
- }
-
- return {
- setTitleSelector: setTitleSelector
- };
-
- });
- }
-})($);