From 4c064eb94a3c915c4d9164194d04aaadd4439cfc Mon Sep 17 00:00:00 2001 From: Saebekassebil Date: Mon, 26 Dec 2011 00:48:10 +0100 Subject: [PATCH] Missed function name... --- web/viewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/viewer.js b/web/viewer.js index a44acb688..d00d50505 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; })();