diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-02 19:46:30 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-02 19:46:30 +0000 |
commit | af1cbac19d7478b935a991abddaa2dd4c8df6c34 (patch) | |
tree | 0c9e42aa73da4db5a99537641db9cb46db0f8fcb /themes/default/template/picture.tpl | |
parent | 208a5acddcfebc131af01855edbf7f6cdc903bf7 (diff) |
new template features: combine_script, footer_script and get_combined_scripts
migrated public templates only; need more code doc
git-svn-id: http://piwigo.org/svn/trunk@7975 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/picture.tpl')
-rw-r--r-- | themes/default/template/picture.tpl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 00e548609..220790059 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -59,6 +59,7 @@ <a href="{$U_ADMIN}" title="{'Modify information'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/preferences.png" class="button" alt="{'edit'|@translate}"></a> {/if} {if isset($U_CADDIE) }{*caddie management BEGIN*} +{combine_script id='core.scripts' load='async' path='themes/default/js/scripts.js'} <script type="text/javascript"> {literal}function addToCadie(aElement, rootUrl, id) { @@ -208,15 +209,17 @@ y.callService( <input type="submit" name="rate" value="{$mark}" class="rateButton" title="{$mark}"> {/if} {/foreach} + {combine_script id='core.scripts' load='async' path='themes/default/js/scripts.js'} + {combine_script id='rating' load='async' require='core.scripts' path='themes/default/js/rating.js'} <script type="text/javascript"> var _pwgRatingAutoQueue = _pwgRatingAutoQueue || []; _pwgRatingAutoQueue.push( {ldelim}rootUrl: '{$ROOT_URL|@escape:"javascript"}', image_id: {$current.id}, updateRateText: "{'Update your rating'|@translate|@escape:'javascript'}", updateRateElement: document.getElementById("updateRate"), ratingSummaryText: "{'%.2f (rated %d times)'|@translate|@escape:'javascript'}", ratingSummaryElement: document.getElementById("ratingSummary") {rdelim} ); - (function () {ldelim} + /*(function () {ldelim} var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '{$ROOT_URL}themes/default/js/rating.js'; var s0 = document.getElementsByTagName('script')[0]; s0.parentNode.insertBefore(s, s0); - })(); + })();*/ </script> </div> </form> @@ -228,6 +231,7 @@ y.callService( <tr id="Privacy"> <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"> {literal}function setPrivacyLevel(selectElement, rootUrl, id, level) { |