warn users if their browser does not support localStorage

pull/1/head
ansuz 8 years ago
parent d367f71760
commit c779e328e8

@ -20,5 +20,16 @@ define([], function () {
};
}
if (!localStorage || typeof(localStorage.getItem) !== 'function') {
require('jquery', function ($) {
$.ajax({
type: 'HEAD',
url: '/common/feedback.html?NO_LOCALSTORAGE=' + (+new Date()),
});
});
window.alert("CryptPad needs localStorage to work, try a different browser");
return;
}
require([document.querySelector('script[data-bootload]').getAttribute('data-bootload')]);
});

Loading…
Cancel
Save