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

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

<script type="text/javascript" defer="defer">
$(document).ready(function(){literal}{{/literal} 
	actionDataTables['{$properties.uniqueId}'] = new actionDataTable();
	actionDataTables['{$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}
	actionDataTables['{$properties.uniqueId}'].init('{$properties.uniqueId}');
{literal}}{/literal});
</script>