Content deleted Content added
PleaseStand (talk | contribs) m avoid causing error in IE 6 |
PleaseStand (talk | contribs) prevent clickjacking |
||
Line 3:
* http://en.wikipedia.org/wiki/Wikipedia:User_script_sandbox
*
* Copyright 2012 Wikipedia user PleaseStand
*
* Licensed under the Creative Commons Attribution-Share-Alike 3.0 Unported License,
Line 187:
// On the sandbox page, run the editor instead of the code in the sandbox.
if ( mw.config.get("wgAction") === "view" &&
{
// Prevent clickjacking.
if ( window.top !== window.self ) {
return;
}
mw.loader.using( editor.dependencies, function() {
$( editor.show );
});
}
else
|