Browse Source

Merge pull request #1 from andrewbrereton/patch-3

Fix for Android
pull/558/head
artem avetisyan 11 years ago
parent
commit
c686640105
  1. 2
      js/push.js

2
js/push.js

@ -256,7 +256,7 @@
xhr.send();
if (isFileProtocol) {
if (xhr.status === 0) {
if (xhr.status === 0 || xhr.status === 200) {
success(xhr, options);
} else {
failure(options.url);

Loading…
Cancel
Save