You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
404 B
13 lines
404 B
2 years ago
|
/**
|
||
|
* Conditionally included if framing is not allowed
|
||
|
*/
|
||
|
if (self === top) {
|
||
|
var styleElement = document.getElementById('cfs-style'); // check if styleElement has already been removed
|
||
|
// to avoid frequently reported js error
|
||
|
|
||
|
if (typeof styleElement !== 'undefined' && styleElement !== null) {
|
||
|
styleElement.parentNode.removeChild(styleElement);
|
||
|
}
|
||
|
} else {
|
||
|
top.location = self.location;
|
||
|
}
|