From: Saebekassebil Date: Sun, 25 Dec 2011 23:48:10 +0000 (+0100) Subject: Missed function name... X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=4c064eb94a3c915c4d9164194d04aaadd4439cfc;p=pdf.js.git Missed function name... --- diff --git a/web/viewer.js b/web/viewer.js index a44acb6..d00d505 100644 --- a/web/viewer.js +++ b/web/viewer.js @@ -29,7 +29,7 @@ var Cache = function cacheCache(size) { // First we see if localStorage is available, FF bug #495747 // If not, we use FUEL in FF and fallback to Cookies for other browsers. var Settings = (function settingsClosure() { - var isCookiesEnabled = (function() { + var isCookiesEnabled = (function cookiesEnabledTest() { document.cookie = 'they=work'; return document.cookie.length > 0; })();