blob: 30d5c5fda1656f07740f9032498299c216d0dd27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html><head>
<title> TC component </title>
</head>
<body>
<p>This page should appear in popup or frame</p>
<script type="text/javascript">
var target = top || opener;
var id = location.search?' '+parseInt(location.search.substring(1)) : '';
target.log('frame/popup script'+id);
</script>
</body></html>
|