diff options
author | mistic100 <mistic@piwigo.org> | 2012-04-03 15:44:21 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-04-03 15:44:21 +0000 |
commit | 3c68e2aee928fb476eace48dafeef550d0db95fd (patch) | |
tree | 9994b9b82c866cd9ae00a7e7fed48129f636efcb /themes/default/template/picture.tpl | |
parent | 14228ae1bdb3f71bb366dce8cc6c2b4a3f126a70 (diff) |
feature 2588: use jQuery() function instead of $(), avoiding possible conflicts with other frameworks
git-svn-id: http://piwigo.org/svn/trunk@13870 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/picture.tpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 5450dce85..6d1a6aba9 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -35,14 +35,14 @@ function changeImgSrc(url,typeSave,typeMap) document.cookie = 'picture_deriv='+typeSave+';path={/literal}{$COOKIE_PATH}{literal}'; } -$("#derivativeSwitchLink").click(function() { - var elt = $("#derivativeSwitchBox"); - elt.css("left", Math.min( $(this).offset().left, $(window).width() - elt.outerWidth(true) - 5)) - .css("top", $(this).offset().top + $(this).outerHeight(true)) +jQuery("#derivativeSwitchLink").click(function() { + var elt = jQuery("#derivativeSwitchBox"); + elt.css("left", Math.min( jQuery(this).offset().left, jQuery(window).width() - elt.outerWidth(true) - 5)) + .css("top", jQuery(this).offset().top + jQuery(this).outerHeight(true)) .toggle(); }); -$("#derivativeSwitchBox").on("mouseleave click", function() { - $(this).hide(); +jQuery("#derivativeSwitchBox").on("mouseleave click", function() { + jQuery(this).hide(); }); {/literal}{/footer_script} {strip}<a id="derivativeSwitchLink" title="{'Photo sizes'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> |