Files
Verso/services/web/public/src/modules/localStorage.js
T
Simon Detheridge 89abb5b609 Merge pull request #2160 from overleaf/pr-persist-contact-modal-details
Persist contact modal form info

GitOrigin-RevId: d7bf656015694e36a717e89de0879233c43d63a3
2019-09-25 14:48:12 +00:00

14 lines
384 B
JavaScript

angular.module('localStorage', []).value('localStorage', function(...args) {
/*
localStorage can throw browser exceptions, for example if it is full
We don't use localStorage for anything critical, on in that case just
fail gracefully.
*/
try {
return $.localStorage(...args)
} catch (e) {
console.error('localStorage exception', e)
return null
}
})