Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>

	<head>
        <title>Child</title>

		<script>
            function changeParent()
            {
                var parent = window.opener;
//                parent.document.body.style.backgroundColor = "red";
                if(parent)
                {
                    parent.location = "iframe.html";
                }
                window.close();
            }
        </script>
	</head>

	<body>
        Child
        <button onclick="changeParent()">Logout</button>
	</body>
</html>

Commits for litesoft/trunk/GWT_Sandbox/UIdesign/App/src/com/test/uidesign/public/KKtmp/child.html

Diff revisions: vs.
Revision Author Commited Message
162 GeorgeS picture GeorgeS Fri 01 Apr, 2011 19:58:40 +0000