diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-18 17:25:40 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-18 17:25:40 +0100 |
commit | 84a7173ff812d7ed510ccf6568b791fbb464706f (patch) | |
tree | ad78d48ef9f4220817102bcd1d493bee8cdbd9b9 /themes/extensions/jqt.autotitles.js | |
parent | 1bf6db40207a6e967f896bd3d9034337ce22b84a (diff) | |
parent | 816d55f57ec56f4f306585075ac43e011bcb9fea (diff) | |
download | istreamdev-84a7173ff812d7ed510ccf6568b791fbb464706f.tar.gz istreamdev-84a7173ff812d7ed510ccf6568b791fbb464706f.tar.bz2 |
Merge branch 'jquery' of projects.vdr-developer.org:istreamdev into jquery
* 'jquery' of projects.vdr-developer.org:istreamdev:
clean themes rep
Diffstat (limited to 'themes/extensions/jqt.autotitles.js')
-rw-r--r-- | themes/extensions/jqt.autotitles.js | 51 |
1 files changed, 0 insertions, 51 deletions
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 <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 |