diff options
author | portix <portix@gmx.net> | 2014-03-06 17:45:27 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2014-03-06 17:45:27 +0100 |
commit | 22f78b85919e459433d5e95035b112562a768cf5 (patch) | |
tree | b0f555aa57f99279c8d80334608bc90c7ca0ade7 | |
parent | 1586ee439c1a9c761f38be95360a25bf95a1f59d (diff) | |
download | dwb-22f78b85919e459433d5e95035b112562a768cf5.zip |
Fixing inject function of cookies
-rw-r--r-- | extensions/cookies | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/cookies b/extensions/cookies index 79db271f..226f8b72 100644 --- a/extensions/cookies +++ b/extensions/cookies @@ -199,7 +199,7 @@ HEREDOC*/ function injectScript() { - var m_moduleId = this.exports.moduleId; + var m_moduleId = exports.moduleId; function query(selector) { var nodes = document.querySelectorAll(selector); @@ -438,7 +438,7 @@ function injectScript() document.getElementById("allcookies").style.display = "none"; } - createTable(this.exports.data); + createTable(exports.data); } function fn(n) { return n < 10 ? "0" + n : String(n); } |