diff --git a/directives/plugin.html b/directives/plugin.html
new file mode 100644
index 0000000..2b6fe6e
--- /dev/null
+++ b/directives/plugin.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
index 1ef0a09..2006230 100644
--- a/index.html
+++ b/index.html
@@ -291,14 +291,7 @@ $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out rel
|
-
-
-
-
-
-
-
-
+ allo
diff --git a/js/glowingbear.js b/js/glowingbear.js
index 20ac168..8ad8845 100644
--- a/js/glowingbear.js
+++ b/js/glowingbear.js
@@ -762,6 +762,20 @@ weechat.config(['$routeProvider',
}
]);
+
+weechat.directive('plugin', function() {
+
+ return {
+ templateUrl: 'directives/plugin.html',
+
+ scope: {
+ data: '=data',
+ },
+ }
+
+});
+
+
weechat.directive('inputBar', function() {
return {
|