mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
246 B
HTML
14 lines
246 B
HTML
1 year ago
|
<script>
|
||
|
|
||
|
// Prevent from DOM clobbering.
|
||
|
if ( typeof window.opener._cke_htmlToLoad == 'string' ) {
|
||
|
var doc = document;
|
||
|
doc.open();
|
||
|
doc.write( window.opener._cke_htmlToLoad );
|
||
|
doc.close();
|
||
|
|
||
|
delete window.opener._cke_htmlToLoad;
|
||
|
}
|
||
|
|
||
|
</script>
|