aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatsuyuki Ohmuro <harmony7@pex2.jp>2014-05-10 04:47:30 +0900
committerKatsuyuki Ohmuro <harmony7@pex2.jp>2014-05-10 04:47:30 +0900
commit112a2f7ea7ba79914983a57b1341316432063086 (patch)
treec4c8f50f07bfb4414ccf1046f891d2c4a8d40a74
parentff8e938287cdb2599c66096d7aaf2fa002fbf0e8 (diff)
downloadpollymer-112a2f7ea7ba79914983a57b1341316432063086.tar
pollymer-112a2f7ea7ba79914983a57b1341316432063086.tar.gz
Fixed crashing issue when abort() called on fresh object.
-rw-r--r--CHANGELOG.md1
-rw-r--r--pollymer.js34
2 files changed, 28 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 232ac09..eefc904 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,3 +3,4 @@ Pollymer Changelog
v. 1.0.0 (01-31-2013) - Initial Release.
v. 1.1.0 (04-28-2014) - Support for RequireJS (AMD).
+v. 1.1.1 (05-10-2014) - Fixed crashing issue when abort() called on fresh object. \ No newline at end of file
diff --git a/pollymer.js b/pollymer.js
index 898d1f3..dd5da75 100644
--- a/pollymer.js
+++ b/pollymer.js
@@ -1,5 +1,5 @@
/**
- * Pollymer JavaScript Library v1.1.0
+ * Pollymer JavaScript Library v1.1.1
* Copyright 2013-2014 Fanout, Inc.
* Released under the MIT license (see COPYING file in source distribution)
*/
@@ -8,7 +8,7 @@
var DEBUG = true;
var isWindow = function(variable) {
return variable && variable.document && variable.location && variable.alert && variable.setInterval;
- }
+ };
if (!isWindow(window)) {
throw "The current version of Pollymer may only be used within the context of a browser.";
}
@@ -140,7 +140,16 @@
transport = transportTypes.Jsonp;
}
} else {
- transport = transportType;
+ switch (transportType) {
+ case transportTypes.Xhr:
+ transport = transportTypes.Xhr;
+ break;
+ case transportTypes.Jsonp:
+ transport = transportTypes.Jsonp;
+ break;
+ default:
+ transport = null;
+ }
}
return transport;
};
@@ -317,24 +326,35 @@
// cleanup would be a no-no)
this._transport = chooseTransport(this.transport, url);
- if (this._transport == transportTypes.Xhr) {
+ switch (this._transport) {
+ case transportTypes.Xhr:
+ consoleInfo("pollymer: Using XHR transport.");
this._xhr = this._startXhr(method, url, headers, body);
- } else { // Jsonp
+ break;
+ case transportTypes.Jsonp:
+ consoleInfo("pollymer: Using JSONP transport.");
this._jsonp = this._startJsonp(method, url, headers, body);
+ break;
+ default:
+ consoleError("pollymer: Invalid transport.");
+ break;
}
};
Request.prototype._cleanupConnect = function (abort) {
window.clearTimeout(this._timer);
this._timer = null;
- if (this._transport == transportTypes.Xhr) {
+ switch (this._transport) {
+ case transportTypes.Xhr:
consoleInfo("pollymer: XHR cleanup");
this._cleanupXhr(this._xhr, abort);
this._xhr = null;
- } else { // Jsonp
+ break;
+ case transportTypes.Jsonp:
consoleInfo("pollymer: json-p " + this._jsonp.id + " cleanup");
this._cleanupJsonp(this._jsonp, abort);
this._jsonp = null;
+ break;
}
};
Request.prototype.abort = function () {