Diffstat (limited to 'content/generated-content.js') (more/less context) (ignore whitespace changes)
-rw-r--r-- | content/generated-content.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/content/generated-content.js b/content/generated-content.js new file mode 100644 index 0000000..0ad08bb --- a/dev/null +++ b/content/generated-content.js | |||
@@ -0,0 +1,17 @@ | |||
1 | var generated = { | ||
2 | fireflix: null, | ||
3 | data: null, | ||
4 | |||
5 | init: function() { | ||
6 | this.fireflix = window.arguments[0]; | ||
7 | this.data = window.arguments[1]; | ||
8 | this.databox = document.getElementById('data'); | ||
9 | this.databox.value = this.data; | ||
10 | this.databox.select(); | ||
11 | }, | ||
12 | copy: function() { | ||
13 | var ch = Components.classes["@mozilla.org/widget/clipboardhelper;1"] | ||
14 | .getService(Components.interfaces.nsIClipboardHelper); | ||
15 | ch.copyString(this.data); | ||
16 | } | ||
17 | }; | ||