diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-04 20:32:44 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-04 20:32:44 +0000 |
commit | bbd63f0088fe3ee5ea491ac5da03d8b68b5b1a0b (patch) | |
tree | 3ecc564ada495c5d16055e0ab0b5ce2894f86265 /admin/themes/default/template/footer.tpl | |
parent | 81f391a1e441d424d67c9662531c770004aa4d89 (diff) |
trunk admin theme goes with combine_script instead of old style known_script
git-svn-id: http://piwigo.org/svn/trunk@7995 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/footer.tpl | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/admin/themes/default/template/footer.tpl b/admin/themes/default/template/footer.tpl index 16491a724..ac608bef9 100644 --- a/admin/themes/default/template/footer.tpl +++ b/admin/themes/default/template/footer.tpl @@ -42,17 +42,25 @@ </div> <!-- footer --> </div> <!-- the_page --> + +{combine_script id='jquery.tipTip' load='async' path='themes/default/js/plugins/jquery.tipTip.minified.js'} +{footer_script require='jquery.tipTip'} +jQuery(document).ready(function() {ldelim} + jQuery('#pwgHead A, #footer A, .themeActions A, .themeActions SPAN, .languageActions A, .languageActions SPAN').tipTip({ldelim} + 'delay' : 0, + 'fadeIn' : 200, + 'fadeOut' : 200, + }); +}); +{/footer_script} + +<!-- BEGIN get_combined_scripts --> +{get_combined_scripts load='footer'} +<!-- END get_combined_scripts --> + {literal} <script type='text/javascript'> - $(function() { - $('#pwgHead A, #footer A, .themeActions A, .themeActions SPAN, .languageActions A, .languageActions SPAN').tipTip({ - 'delay' : 0, - 'fadeIn' : 200, - 'fadeOut' : 200, - }); - }); - - $(document).ready(function() { + jQuery(document).ready(function() { $("a.externalLink").click(function() { window.open($(this).attr("href")); return false; |