Browse Source

Prevent userscript in iframe

tags/build/2.0.0.pre1
Ruud 13 years ago
parent
commit
c34f39216e
  1. 3
      couchpotato/core/plugins/userscript/template.js

3
couchpotato/core/plugins/userscript/template.js

@ -12,6 +12,9 @@
// ==/UserScript==
if (window.top != window.self) // Only run on top window
return;
var version = {{version}},
host = '{{host}}',
api = '{{api}}';

Loading…
Cancel
Save