Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2008-07-28 03:32:54 +0400
committermattpiwik <matthieu.aubry@gmail.com>2008-07-28 03:32:54 +0400
commit995c69fefeb52d289e3613e552ce11d204826d8e (patch)
treeab59bac1803b272272ca9d16ae69b65fd44a25ba /plugins/CoreHome/templates/datatable_actions_js.tpl
parent9bcf3f24892e3ce52e0ce9cb4c38465b9084059c (diff)
- end of previous commit. For some reasons Tortoise didn't see these files, bad!
git-svn-id: http://dev.piwik.org/svn/trunk@582 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/CoreHome/templates/datatable_actions_js.tpl')
-rw-r--r--plugins/CoreHome/templates/datatable_actions_js.tpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/CoreHome/templates/datatable_actions_js.tpl b/plugins/CoreHome/templates/datatable_actions_js.tpl
new file mode 100644
index 0000000000..5bf5ed2bca
--- /dev/null
+++ b/plugins/CoreHome/templates/datatable_actions_js.tpl
@@ -0,0 +1,12 @@
+
+<script type="text/javascript" defer="defer">
+$(document).ready(function(){literal}{{/literal}
+ actionDataTables['{$id}'] = new actionDataTable();
+ actionDataTables['{$id}'].param = {literal}{{/literal}
+ {foreach from=$javascriptVariablesToSet key=name item=value name=loop}
+ {$name}: '{$value}'{if !$smarty.foreach.loop.last},{/if}
+ {/foreach}
+ {literal}};{/literal}
+ actionDataTables['{$id}'].init('{$id}');
+{literal}}{/literal});
+</script>