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

notify_parent_iframe.tpl « templates « Overlay « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e4dbede4ec09e7d46667200780400230f77633f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
	<title></title>
</head>
<body>
	<script type="text/javascript">
		// go up two iframes to find the piwik window
		var piwikWindow = window.parent.parent;
		// notify piwik of location change
		// the location has been passed as the hash part of the url from the overlay session
		piwikWindow.Piwik_Overlay.setCurrentUrl(window.location.hash.substring(1));
	</script>
</body>
</html>