diff options
Diffstat (limited to 'themes/default/template')
-rw-r--r-- | themes/default/template/picture.tpl | 10 | ||||
-rw-r--r-- | themes/default/template/picture_nav_buttons.tpl | 19 |
2 files changed, 14 insertions, 15 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 9afef3d5a..1288e1f17 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -60,7 +60,7 @@ </a> {/if} {if isset($U_SET_AS_REPRESENTATIVE)} - <a href="{$U_SET_AS_REPRESENTATIVE}" title="{'set as category representative'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> + <a href="{$U_SET_AS_REPRESENTATIVE}" title="{'set as album representative'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> <span class="pwg-icon pwg-icon-representative"> </span><span class="pwg-button-text">{'representative'|@translate}</span> </a> {/if} @@ -70,7 +70,7 @@ </a> {/if} {if isset($U_CADDIE)}{*caddie management BEGIN*} -<script type="text/javascript"> +{footer_script} {literal}function addToCadie(aElement, rootUrl, id) { if (aElement.disabled) return; @@ -85,7 +85,7 @@ y.callService( } ); }{/literal} -</script> +{/footer_script} <a href="{$U_CADDIE}" onclick="addToCadie(this, '{$ROOT_URL|@escape:'javascript'}', {$current.id}); return false;" title="{'add to caddie'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> <span class="pwg-icon pwg-icon-caddie-add"> </span><span class="pwg-button-text">{'caddie'|@translate}</span> </a> @@ -241,7 +241,7 @@ y.callService( <td class="label">{'Who can see this photo?'|@translate}</td> <td class="value"> {combine_script id='core.scripts' load='async' path='themes/default/js/scripts.js'} -<script type="text/javascript"> +{footer_script} {literal}function setPrivacyLevel(selectElement, rootUrl, id, level) { selectElement.disabled = true; @@ -255,7 +255,7 @@ y.callService( } ); }{/literal} -</script> +{/footer_script} <select onchange="setPrivacyLevel(this, '{$ROOT_URL|@escape:'javascript'}', {$current.id}, this.options[selectedIndex].value)"> {foreach from=$available_permission_levels item=label key=level} <option label="{$label}" value="{$level}"{if $level == $current.level} selected="selected"{/if}>{$label}</option> diff --git a/themes/default/template/picture_nav_buttons.tpl b/themes/default/template/picture_nav_buttons.tpl index 03000676b..1a0e2c315 100644 --- a/themes/default/template/picture_nav_buttons.tpl +++ b/themes/default/template/picture_nav_buttons.tpl @@ -84,7 +84,7 @@ {/if} </div> -<script type="text/javascript">// <![CDATA[ {literal} +{footer_script}{literal} document.onkeydown = function(e) { e=e||window.event; @@ -97,29 +97,28 @@ document.onkeydown = function(e) switch(keyCode) { {/literal} {if isset($next)} - case 63235: case 39: if (e.ctrlKey || docElem.scrollLeft==docElem.scrollWidth-docElem.clientWidth)url="{$next.U_IMG|@escape:jasvascript}"; break; + case 63235: case 39: if (e.ctrlKey || docElem.scrollLeft==docElem.scrollWidth-docElem.clientWidth)url="{$next.U_IMG}"; break; {/if} {if isset($previous)} - case 63234: case 37: if (e.ctrlKey || docElem.scrollLeft==0)url="{$previous.U_IMG|@escape:jasvascript}"; break; + case 63234: case 37: if (e.ctrlKey || docElem.scrollLeft==0)url="{$previous.U_IMG}"; break; {/if} {if isset($first)} - /*Home*/case 36: if (e.ctrlKey)url="{$first.U_IMG|@escape:jasvascript}"; break; + /*Home*/case 36: if (e.ctrlKey)url="{$first.U_IMG}"; break; {/if} {if isset($last)} - /*End*/case 35: if (e.ctrlKey)url="{$last.U_IMG|@escape:jasvascript}"; break; + /*End*/case 35: if (e.ctrlKey)url="{$last.U_IMG}"; break; {/if} {if isset($U_UP) and !isset($slideshow)} - /*Up*/case 38: if (e.ctrlKey)url="{$U_UP|@escape:jasvascript}"; break; + /*Up*/case 38: if (e.ctrlKey)url="{$U_UP}"; break; {/if} - {if isset($slideshow.U_START_PLAY)} - /*Pause*/case 32: url="{$slideshow.U_START_PLAY|@escape:jasvascript}"; break; + /*Pause*/case 32: url="{$slideshow.U_START_PLAY}"; break; {/if} {if isset($slideshow.U_STOP_PLAY)} - /*Play*/case 32: url="{$slideshow.U_STOP_PLAY|@escape:jasvascript}"; break; + /*Play*/case 32: url="{$slideshow.U_STOP_PLAY}"; break; {/if} } if (url) {ldelim}window.location=url.replace("&","&"); return false;} return true; } -// ]]></script> +{/footer_script} |