aboutsummaryrefslogtreecommitdiffstats
path: root/cookieManager.js
diff options
context:
space:
mode:
authorteramako2013-04-10 22:14:28 +0900
committerteramako2013-04-10 22:14:28 +0900
commit596ae3e9f228d34891f8e52225205e78371b4828 (patch)
tree3e8338fb8c47c07be169a227a5112bab78b7ceba /cookieManager.js
parent004f9e2fd284912c3b70401310e118493c7fa8d3 (diff)
parent8eb425bbdb21e37603603db84d444c90a2d30fb5 (diff)
downloadvimperator-plugins-596ae3e9f228d34891f8e52225205e78371b4828.tar.bz2
Merge branch '3.6'
Diffstat (limited to 'cookieManager.js')
-rw-r--r--cookieManager.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/cookieManager.js b/cookieManager.js
index f1c0cb9..21db32b 100644
--- a/cookieManager.js
+++ b/cookieManager.js
@@ -1,4 +1,4 @@
-var PLUGIN_INFO =
+var PLUGIN_INFO = xml`
<VimperatorPlugin>
<name>{NAME}</name>
<description>Manage Cookies (list, remove, add/remove permission)</description>
@@ -40,7 +40,7 @@ Cookie の管理をするプラグイン
補完機能を存分にお楽しみください :)
]]></detail>
-</VimperatorPlugin>;
+</VimperatorPlugin>`;
liberator.plugins.cookieManager = (function(){
@@ -135,7 +135,7 @@ commands.addUserCommand(["cookiem[anager]"], "Cookie Management",
if (!host) return;
switch (args[0]){
case "list":
- let xml = <></>;
+ let xml = ``;
let tree = cManager.stored.getTree(host);
for (let name in tree){
xml += template.table(name, [[c.name, c.value] for each(c in tree[name])]);