aboutsummaryrefslogtreecommitdiffstats
path: root/umihara.js
diff options
context:
space:
mode:
authordrry2008-10-31 15:30:17 +0000
committerdrry2008-10-31 15:30:17 +0000
commitadda95c12d27f64b046a9af4c36c9e40944d4c91 (patch)
tree4de9d20173a7e5d18c567ad5dbfa5895973c704b /umihara.js
parentd95c1e395f7836f30506b7af64c411e124883d49 (diff)
downloadvimperator-plugins-adda95c12d27f64b046a9af4c36c9e40944d4c91.tar.bz2
* fixed a missing metadata block.
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@22456 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'umihara.js')
-rw-r--r--umihara.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/umihara.js b/umihara.js
index 7f0a86c..13e88f6 100644
--- a/umihara.js
+++ b/umihara.js
@@ -1,3 +1,4 @@
+// ==VimperatorPlugin==
// @name Kawase
// @description-ja 外国為替換算
// @license Creative Commons 2.1 (Attribution + Share Alike)
@@ -72,10 +73,10 @@
if (req.readyState == 4 && req.status == 200) {
let m = req.responseText.match(re);
if (m) {
- let text = from + ' -> ' + to +
+ let text = from + ' -> ' + to +
'\n ' + from + ': ' + value +
- '\n ' + to + ': ' + m[3] +
- '\n rate: ' + m[2] +
+ '\n ' + to + ': ' + m[3] +
+ '\n rate: ' + m[2] +
'\n time: ' + m[1];
liberator.echo(text);
if (clipboard)
@@ -113,4 +114,3 @@
);
})();
-