aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/goto/include
diff options
context:
space:
mode:
Diffstat (limited to 'admin/template/goto/include')
-rw-r--r--admin/template/goto/include/autosize.inc.tpl13
-rw-r--r--admin/template/goto/include/datepicker.inc.tpl24
-rw-r--r--admin/template/goto/include/dbselect.inc.tpl22
-rw-r--r--admin/template/goto/include/install.inc.tpl19
-rw-r--r--admin/template/goto/include/resize.inc.tpl22
5 files changed, 0 insertions, 100 deletions
diff --git a/admin/template/goto/include/autosize.inc.tpl b/admin/template/goto/include/autosize.inc.tpl
deleted file mode 100644
index 5529d07bd..000000000
--- a/admin/template/goto/include/autosize.inc.tpl
+++ /dev/null
@@ -1,13 +0,0 @@
-{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
-{known_script id="jquery.autogrow" src=$ROOT_URL|@cat:"template-common/lib/plugins/jquery.autogrow-textarea.js"}
-
-{* Auto size and auto grow textarea *}
-{literal}
-<script type="text/javascript">
- jQuery().ready(function(){
- jQuery('textarea').css('overflow-y', 'hidden');
- // Auto size and auto grow for all text area
- jQuery('textarea').autogrow();
- });
-</script>
-{/literal}
diff --git a/admin/template/goto/include/datepicker.inc.tpl b/admin/template/goto/include/datepicker.inc.tpl
deleted file mode 100644
index 9d1055c20..000000000
--- a/admin/template/goto/include/datepicker.inc.tpl
+++ /dev/null
@@ -1,24 +0,0 @@
-
-{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
-{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.core.packed.js"}
-{known_script id="jquery.ui.datepicker" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.datepicker.packed.js"}
-{known_script id="datepicker.js" src=$ROOT_URL|@cat:"template-common/datepicker.js"}
-
-{assign var="datepicker_language" value="template-common/lib/ui/i18n/ui.datepicker-"|@cat:$lang_info.code|@cat:".js"}
-
-{if "PHPWG_ROOT_PATH"|@constant|@cat:$datepicker_language|@file_exists}
-{known_script id="jquery.ui.datepicker-$lang_info.code" src=$ROOT_URL|@cat:$datepicker_language}
-{/if}
-
-{html_head}
-<link rel="stylesheet" type="text/css" href="{$ROOT_URL}template-common/lib/ui/theme/ui.datepicker.css">
-{/html_head}
-
-<script type="text/javascript">
-function pwg_initialization_datepicker(day, month, year, linked_date, checked_on_change, min_linked_date, max_linked_date)
-{ldelim}
- return pwg_common_initialization_datepicker(
- "{$ROOT_URL}admin/template/{$themeconf.template}/icon/datepicker.png",
- day, month, year, linked_date, checked_on_change, min_linked_date, max_linked_date);
-}
-</script>
diff --git a/admin/template/goto/include/dbselect.inc.tpl b/admin/template/goto/include/dbselect.inc.tpl
deleted file mode 100644
index 30db7400a..000000000
--- a/admin/template/goto/include/dbselect.inc.tpl
+++ /dev/null
@@ -1,22 +0,0 @@
-{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
-{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.core.packed.js"}
-{known_script id="jquery.ui.resizable" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.resizable.packed.js"}
-
-{* Resize possible *}
-{literal}
-<script type="text/javascript">
- jQuery().ready(function(){
- // Resize possible for double select list
- jQuery(".doubleSelect select.categoryList").resizable({
- handles: "w,e",
- animate: true,
- animateDuration: "slow",
- animateEasing: "swing",
- preventDefault: true,
- preserveCursor: true,
- autoHide: true,
- ghost: true
- });
- });
-</script>
-{/literal}
diff --git a/admin/template/goto/include/install.inc.tpl b/admin/template/goto/include/install.inc.tpl
deleted file mode 100644
index b153f0f30..000000000
--- a/admin/template/goto/include/install.inc.tpl
+++ /dev/null
@@ -1,19 +0,0 @@
-<script type="text/javascript" src="template-common/lib/jquery.packed.js"></script>
-{literal}
-<script type="text/javascript">
-$(function() {
- $option_selected = $('#dblayer option:selected').attr('value');
- if ($option_selected=='sqlite' || $option_selected=='pdo-sqlite') {
- $('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().hide();
- }
- $('#dblayer').change(function() {
- $db = this;
- if ($db.value=='sqlite' || $db.value=='pdo-sqlite') {
- $('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().hide();
- } else {
- $('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().show();
- }
- });
- });
-</script>
-{/literal}
diff --git a/admin/template/goto/include/resize.inc.tpl b/admin/template/goto/include/resize.inc.tpl
deleted file mode 100644
index aebb9f6c5..000000000
--- a/admin/template/goto/include/resize.inc.tpl
+++ /dev/null
@@ -1,22 +0,0 @@
-{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
-{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.core.packed.js"}
-{known_script id="jquery.ui.resizable" src=$ROOT_URL|@cat:"template-common/lib/ui/packed/ui.resizable.packed.js"}
-
-{* Resize possible *}
-{literal}
-<script type="text/javascript">
- jQuery().ready(function(){
- // Resize possible for list
- jQuery(".categoryList").resizable({
- handles: "all",
- animate: true,
- animateDuration: "slow",
- animateEasing: "swing",
- preventDefault: true,
- preserveCursor: true,
- autoHide: true,
- ghost: true
- });
- });
-</script>
-{/literal}