angular-local-storage icon indicating copy to clipboard operation
angular-local-storage copied to clipboard

IE11 saves local cookies always in global scope.

Open recry opened this issue 9 years ago • 0 comments

I have tried to save local cookies (file://...) in IE11 and these are always global for entire filesystem.

Setting empty path does not working because the path is always setting: 320: var cookiePath = "; path=" + cookie.path;

Is it possible to check for empty cookie.path? A possible solution could be:

var cookiePath = ""; if(!!cookie.path){ cookiePath = "; path=" + cookie.path; }

recry avatar Apr 07 '16 08:04 recry