Index: fluid.components.ui-options.css =================================================================== Index: src/webapp/components/uiOptions/js/UIEnhancer.js =================================================================== --- src/webapp/components/uiOptions/js/UIEnhancer.js (revision 7165) +++ src/webapp/components/uiOptions/js/UIEnhancer.js (working copy) @@ -356,7 +356,7 @@ if (endIndex < startIndex) { endIndex = cookie.length; } - retObj = JSON.parse(decodeURIComponent(cookie.substring(startIndex, endIndex))); + retObj = JSON.parse(decodeURIComponent(cookie.substring(startIndex, endIndex))); } } @@ -368,7 +368,7 @@ * @param {Object} settings */ that.save = function (settings) { - document.cookie = that.options.cookieName + "=" + encodeURIComponent(JSON.stringify(settings)); + document.cookie = that.options.cookieName + "=" + encodeURIComponent(JSON.stringify(settings)) + "; path=/"; }; return that;