8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
|
// Locks the pages inside of frames
|
||
|
|
||
|
/*
|
||
|
if (top == self) {
|
||
|
var npage = window.location.href
|
||
|
window.location="/outside.html?"+npage
|
||
|
}
|
||
|
*/
|