summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:53:34 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:53:34 (UTC)
commit0608e045f6aa471916829468f48082ea07a453f4 (patch) (side-by-side diff)
tree57748b9a76e592ae35b165cd6a203e12493d4044 /frontend/gamma/js/JQTouch/extensions/jqt.autotitles.js
parent074e70457c90344b3c1cb236105638d692a0066b (diff)
downloadclipperz-0608e045f6aa471916829468f48082ea07a453f4.zip
clipperz-0608e045f6aa471916829468f48082ea07a453f4.tar.gz
clipperz-0608e045f6aa471916829468f48082ea07a453f4.tar.bz2
Removed extra JS libraries no longer used for the mobile version
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
- };
-
- });
- }
-})($);