Browse code

기본 플러그인 파일 추가

Kang, Ikseon authored on02/02/2018 15:25:42
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,8 @@
1
+(function() {
2
+    var div = document.createElement('div');
3
+    div.style.position = 'fixed';
4
+    div.style.top = 0;
5
+    div.style.right = 0;
6
+    div.textContent = 'hello, world';
7
+    document.body.appendChild(div);
8
+})();