Index: polymer_0.5.4/bower_components/core-ajax/core-xhr.html |
diff --git a/polymer_0.5.0/bower_components/core-ajax/core-xhr.html b/polymer_0.5.4/bower_components/core-ajax/core-xhr.html |
similarity index 98% |
copy from polymer_0.5.0/bower_components/core-ajax/core-xhr.html |
copy to polymer_0.5.4/bower_components/core-ajax/core-xhr.html |
index dbc531b6ca664f1ebb284d1464de899604e0dcc3..ea228049b89894274edeea9355cbdf96c8de0711 100644 |
--- a/polymer_0.5.0/bower_components/core-ajax/core-xhr.html |
+++ b/polymer_0.5.4/bower_components/core-ajax/core-xhr.html |
@@ -51,7 +51,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
var async = !options.sync; |
// |
var params = this.toQueryString(options.params); |
- if (params && method == 'GET') { |
+ if (params && method.toUpperCase() == 'GET') { |
url += (url.indexOf('?') > 0 ? '&' : '?') + params; |
} |
var xhrParams = this.isBodyMethod(method) ? (options.body || params) : null; |