warn users if their browser does not support localStorage

This commit is contained in:
ansuz 2017-06-13 11:33:25 +02:00
parent d367f71760
commit c779e328e8

View File

@ -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')]); require([document.querySelector('script[data-bootload]').getAttribute('data-bootload')]);
}); });