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/element_set_unit.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 'admin/themes/default/template/element_set_unit.tpl')
-rw-r--r-- | admin/themes/default/template/element_set_unit.tpl | 51 |
1 files changed, 24 insertions, 27 deletions
diff --git a/admin/themes/default/template/element_set_unit.tpl b/admin/themes/default/template/element_set_unit.tpl index 9f71751e4..21b521b1e 100644 --- a/admin/themes/default/template/element_set_unit.tpl +++ b/admin/themes/default/template/element_set_unit.tpl @@ -2,34 +2,31 @@ {include file='include/autosize.inc.tpl'} {include file='include/datepicker.inc.tpl'} -{known_script id="jquery.fcbkcomplete" src=$ROOT_URL|@cat:"themes/default/js/plugins/jquery.fcbkcomplete.js"} -{html_head} -<script type="text/javascript"> - var tag_boxes_selector = ""; +{combine_script id='jquery.fcbkcomplete' load='async' require='jquery' path='themes/default/js/plugins/jquery.fcbkcomplete.js'} +{footer_script require='jquery.fcbkcomplete'} +var tag_boxes_selector = ""; {foreach from=$elements item=element name=element} - {if $smarty.foreach.element.first} - var prefix = ""; - {else} - prefix = ", "; - {/if} - tag_boxes_selector = tag_boxes_selector + prefix + "#tags-" + {$element.ID}; +{if $smarty.foreach.element.first} +var prefix = ""; +{else} +prefix = ", "; +{/if} + tag_boxes_selector = tag_boxes_selector + prefix + "#tags-" + {$element.ID}; {/foreach} {literal} - $(document).ready(function() { - $(tag_boxes_selector).fcbkcomplete({ - json_url: "admin.php?fckb_tags=1", - cache: false, - filter_case: false, - filter_hide: true, - firstselected: true, - filter_selected: true, - maxitems: 100, - newel: true - }); - }); -</script> -{/literal} -{/html_head} +jQuery(document).ready(function() { + $(tag_boxes_selector).fcbkcomplete({ + json_url: "admin.php?fckb_tags=1", + cache: false, + filter_case: false, + filter_hide: true, + firstselected: true, + filter_selected: true, + maxitems: 100, + newel: true + }); +}); +{/literal}{/footer_script} <h2>{'Batch management'|@translate}</h2> @@ -96,9 +93,9 @@ maxlength="4" value="{$element.DATE_CREATION_YEAR}"> <input id="date_creation_linked_date-{$element.ID}" name="date_creation_linked_date-{$element.ID}" type="hidden" size="10" disabled="disabled"> - <script type="text/javascript"> + {footer_script} pwg_initialization_datepicker("#date_creation_day-{$element.ID}", "#date_creation_month-{$element.ID}", "#date_creation_year-{$element.ID}", "#date_creation_linked_date-{$element.ID}", "#date_creation_action_set-{$element.ID}"); - </script> + {/footer_script} </td> </tr> <tr> |