aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/batch_manager_global.tpl
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2014-06-26 20:23:50 +0000
committerrvelices <rv-github@modusoptimus.com>2014-06-26 20:23:50 +0000
commitec03d115a998e057667fb5800e574e961b2bbe31 (patch)
tree8861ad0afb74a75b7a6add3249d9ac42b031b233 /admin/themes/default/template/batch_manager_global.tpl
parent979ca7435b3986c3c8aa7adf10685568df83b342 (diff)
moved around 100k of javascript from synchronous loading to async... (a lot more could be done...)
git-svn-id: http://piwigo.org/svn/trunk@28806 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--admin/themes/default/template/batch_manager_global.tpl68
1 files changed, 11 insertions, 57 deletions
diff --git a/admin/themes/default/template/batch_manager_global.tpl b/admin/themes/default/template/batch_manager_global.tpl
index 6425f49e9..bc5738a40 100644
--- a/admin/themes/default/template/batch_manager_global.tpl
+++ b/admin/themes/default/template/batch_manager_global.tpl
@@ -1,6 +1,5 @@
-{include file='include/tag_selection.inc.tpl'}
-{include file='include/datepicker.inc.tpl'}
-{include file='include/colorbox.inc.tpl'}
+{include file='include/datepicker.inc.tpl' load_mode='async'}
+{include file='include/colorbox.inc.tpl' load_mode='async'}
{include file='include/add_album.inc.tpl'}
{combine_script id='common' load='footer' path='admin/themes/default/js/common.js'}
@@ -14,63 +13,18 @@
{combine_script id='jquery.selectize' load='footer' path='themes/default/js/plugins/selectize.min.js'}
{combine_css id='jquery.selectize' path="themes/default/js/plugins/selectize.`$selectizeTheme`.css"}
-{combine_script id='jquery.progressBar' load='footer' path='themes/default/js/plugins/jquery.progressbar.min.js'}
-{combine_script id='jquery.ajaxmanager' load='footer' path='themes/default/js/plugins/jquery.ajaxmanager.js'}
+{combine_script id='jquery.progressBar' load='async' path='themes/default/js/plugins/jquery.progressbar.min.js'}
+{combine_script id='jquery.ajaxmanager' load='async' path='themes/default/js/plugins/jquery.ajaxmanager.js'}
-{footer_script}{literal}
-/* Shift-click: select all photos between the click and the shift+click */
-jQuery(document).ready(function() {
- var last_clicked=0;
- var last_clickedstatus=true;
- jQuery.fn.enableShiftClick = function() {
- var inputs = [];
- var count=0;
- this.find('input[type=checkbox]').each(function() {
- var pos=count;
- inputs[count++]=this;
- $(this).bind("shclick", function (dummy,event) {
- if (event.shiftKey) {
- var first = last_clicked;
- var last = pos;
- if (first > last) {
- first=pos;
- last=last_clicked;
- }
-
- for (var i=first; i<=last;i++) {
- input = $(inputs[i]);
- $(input).prop('checked', last_clickedstatus);
- if (last_clickedstatus)
- {
- $(input).siblings("span.wrap2").addClass("thumbSelected");
- }
- else
- {
- $(input).siblings("span.wrap2").removeClass("thumbSelected");
- }
- }
- }
- else {
- last_clicked = pos;
- last_clickedstatus = this.checked;
- }
- return true;
- });
- $(this).click(function(event) { $(this).triggerHandler("shclick",event)});
- });
- }
- $('ul.thumbnails').enableShiftClick();
-});
-{/literal}
+{combine_script id='batchManagerGlobal' load='async' require='jquery,datepicker,jquery.colorbox,addAlbum' path='admin/themes/default/js/batchManagerGlobal.js'}
-jQuery(document).ready(function() {ldelim}
- jQuery('[data-datepicker]').pwgDatepicker({
- showTimepicker: true,
- cancelButton: '{'Cancel'|translate}'
- });
+{footer_script}
+var lang = {
+ Cancel: '{'Cancel'|translate|escape:'javascript'}'
+};
+
+jQuery(document).ready(function() {
- jQuery("a.preview-box").colorbox();
-
{* <!-- TAGS --> *}
var tagsCache = new TagsCache({
serverKey: '{$CACHE_KEYS.tags}',