aboutsummaryrefslogtreecommitdiff
path: root/src/module.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-08-12 11:08:43 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-08-12 11:22:09 +0900
commite73d405c5640afda27775285f19516a271b5cefb (patch)
treeda08aefd9c5f718f96aff84c4f2c95554796999b /src/module.js
parentd169661e030e53b6a1635f86205f9fc42d2b7ef2 (diff)
message passing between background and content
Diffstat (limited to 'src/module.js')
-rw-r--r--src/module.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/module.js b/src/module.js
deleted file mode 100644
index e967a62..0000000
--- a/src/module.js
+++ /dev/null
@@ -1,18 +0,0 @@
-const initialize = () => {
- let p = document.createElement("p");
- p.textContent = "Hello Vim Vixen";
- p.style.position = 'fixed';
- p.style.right = '0';
- p.style.bottom = '0';
- p.style.padding = '0rem .5rem';
- p.style.margin = '0';
- p.style.backgroundColor = 'lightgray';
- p.style.border = 'gray';
- p.style.boxShadow = '0 0 2px gray inset';
- p.style.borderRadius = '3px';
- p.style.fontFamily = 'monospace';
-
- document.body.append(p)
-}
-
-export { initialize };