We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d64242f commit 622bfb9Copy full SHA for 622bfb9
src/push-vue.js
@@ -693,7 +693,7 @@ function __ajax(options) {
693
options = options || {};
694
options.type = (options.type || 'GET').toUpperCase();
695
options.dataType = options.dataType || 'json';
696
- params = formatParams(options.data);
+ var params = formatParams(options.data);
697
698
var xhr;
699
if (window.XMLHttpRequest) {
@@ -729,4 +729,4 @@ function formatParams(data) {
729
arr.push(encodeURIComponent(name) + '=' + encodeURIComponent(data[name]));
730
}
731
return arr.join('&');
732
-}
+}
0 commit comments