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

datatable_js.tpl « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04aa61d391e909fb02c91e53881c0996a4e86e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12

<script type="text/javascript" defer="defer">
$(document).ready(function(){literal}{{/literal} 
	dataTables['{$properties.uniqueId}'] = new dataTable();
	dataTables['{$properties.uniqueId}'].param = {literal}{{/literal} 
	{foreach from=$javascriptVariablesToSet key=name item=value name=loop}
		{$name}: '{$value}'{if !$smarty.foreach.loop.last},{/if}
	{/foreach}
	{literal}};{/literal}
	dataTables['{$properties.uniqueId}'].init('{$properties.uniqueId}');
{literal}}{/literal});
</script>