overleaf/services/web/public/coffee/modules/localStorage.coffee
2015-02-12 11:55:52 +00:00

12 lines
No EOL
354 B
CoffeeScript

angular.module("localStorage", [])
.value "localStorage", (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