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(); xhr.send();
if (isFileProtocol) { if (isFileProtocol) {
if (xhr.status === 0) { if (xhr.status === 0 || xhr.status === 200) {
success(xhr, options); success(xhr, options);
} else { } else {
failure(options.url); failure(options.url);

Loading…
Cancel
Save