mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
12 lines
No EOL
354 B
CoffeeScript
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 |