warn users if their browser does not support localStorage
This commit is contained in:
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')]);
|
require([document.querySelector('script[data-bootload]').getAttribute('data-bootload')]);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user