From 6e4b0f41b4cb636164d040133f434db44e568a9e Mon Sep 17 00:00:00 2001 From: suVene Date: Sun, 28 Dec 2008 21:09:43 +0000 Subject: add notifier/subject_wassr.js mod libly.js bugfix. etc. git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@27534 d0d07461-0603-4401-acd4-de1884942a52 --- _libly.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '_libly.js') diff --git a/_libly.js b/_libly.js index b77b9e5..259ec11 100644 --- a/_libly.js +++ b/_libly.js @@ -12,7 +12,7 @@ var PLUGIN_INFO = 適当なライブラリっぽいものたち。 suVene MIT - 0.1.15 + 0.1.16 1.2 2.0pre http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/_libly.js @@ -384,8 +384,9 @@ libly.Request.prototype = { try { libly.Request.requestCount++; + this.method = method; this.transport = new XMLHttpRequest(); - this.transport.open(method, this.url, this.options.asynchronous); + this.transport.open(method, this.url, this.options.asynchronous, this.options.username, this.options.password); this.transport.onreadystatechange = libly.$U.bind(this, this._onStateChange); this.setRequestHeaders(); @@ -452,7 +453,6 @@ libly.Request.prototype = { for (let name in headers) this.transport.setRequestHeader(name, headers[name]); - }, get: function() { this._request('GET'); -- cgit v1.2.3