Browse Source

push.js: add file:// urls support

pull/558/head
artemave 11 years ago
parent
commit
5ccfdd765e
  1. 34
      js/push.js

34
js/push.js

@ -209,6 +209,8 @@
options.container = options.container || options.transition ? document.querySelector('.content') : document.body; options.container = options.container || options.transition ? document.querySelector('.content') : document.body;
var isFileProtocol = /^file:/.test(window.location.protocol);
for (key in bars) { for (key in bars) {
if (bars.hasOwnProperty(key)) { if (bars.hasOwnProperty(key)) {
options[key] = options[key] || document.querySelector(bars[key]); options[key] = options[key] || document.querySelector(bars[key]);
@ -221,17 +223,21 @@
} }
xhr = new XMLHttpRequest(); xhr = new XMLHttpRequest();
xhr.open('GET', options.url, true); if (isFileProtocol) {
xhr.setRequestHeader('X-PUSH', 'true'); xhr.open('GET', options.url, false);
} else {
xhr.open('GET', options.url, true);
xhr.setRequestHeader('X-PUSH', 'true');
xhr.onreadystatechange = function () { xhr.onreadystatechange = function () {
if (options._timeout) { if (options._timeout) {
clearTimeout(options._timeout); clearTimeout(options._timeout);
} }
if (xhr.readyState === 4) { if (xhr.readyState === 4) {
xhr.status === 200 ? success(xhr, options) : failure(options.url); xhr.status === 200 ? success(xhr, options) : failure(options.url);
} }
}; };
}
if (!PUSH.id) { if (!PUSH.id) {
cacheReplace({ cacheReplace({
@ -249,6 +255,14 @@
xhr.send(); xhr.send();
if (isFileProtocol) {
if (xhr.status === 0) {
success(xhr, options);
} else {
failure(options.url);
}
}
if (xhr.readyState && !options.ignorePush) { if (xhr.readyState && !options.ignorePush) {
cachePush(); cachePush();
} }

Loading…
Cancel
Save