add missing var

revert-117-master
Juraj Michalek 11 years ago
parent 95aa4b02f6
commit 976c42e83a

@ -295,7 +295,7 @@ angularLocalStorage.provider('localStorageService', function(){
thisCookie = thisCookie.substring(1, thisCookie.length); thisCookie = thisCookie.substring(1, thisCookie.length);
} }
key = thisCookie.substring(prefixLength, thisCookie.indexOf('=')); var key = thisCookie.substring(prefixLength, thisCookie.indexOf('='));
removeFromCookies(key); removeFromCookies(key);
} }
}; };