ist-ui-panel icon indicating copy to clipboard operation
ist-ui-panel copied to clipboard

if cookie enabled and not exist, always collapsed = true

Open lynx1983 opened this issue 13 years ago • 0 comments

My solution:


if (o.cookie) {
   var saved_state = self._cookie();
   if (saved_state!=null) {
       if(saved_state==1) {
           o.collapsed = true;
       } else {
           o.collapsed = false;
       }
    }
}

lynx1983 avatar Feb 25 '11 07:02 lynx1983