angular-local-storage
angular-local-storage copied to clipboard
IE11 saves local cookies always in global scope.
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; }