Lines Matching refs:persistedState

1513 Firebug.context.persistedState.isOpen=false;
1581 var persistedState=prefs.persistedState||FBL.defaultPersistedState;
1583 }}if(Firebug.context&&persistedState){Firebug.context.persistedState=persistedState
1588 }}var persistedState=Firebug.context.persistedState;
1589 if(!persistedState){persistedState=Firebug.context.persistedState=FBL.defaultPersistedState
1590 }prefs.persistedState=persistedState;
1611 Firebug.Module=extend(new Firebug.Listener(),{initialize:function(){},shutdown:function(){},initContext:function(context){},reattachContext:function(browser,context){},destroyContext:function(context,persistedState){},showContext:function(browser,context){},loadedContext:function(context){},showPanel:function(browser,panel){},showSidePanel:function(browser,panel){},updateOption:function(name,value){},getObjectByURL:function(context,url){}});
1852 }if(!panel.parentPanel){Firebug.context.persistedState.selectedPanelName=panelName
2283 var persistedState=prefs&&prefs.persistedState||defaultPersistedState;
2286 var height=persistedState.height||300;
2322 }else{var height=persistedState.popupHeight||300;
2325 var popupLeft=typeof persistedState.popupLeft=="number"?persistedState.popupLeft:browserWinLeft;
2327 var popupTop=typeof persistedState.popupTop=="number"?persistedState.popupTop:Math.max(0,Math.min(browserWinTop+browserWinSize.height-height,screen.availHeight-height-61));
2328 var popupWidth=typeof persistedState.popupWidth=="number"?persistedState.popupWidth:Math.max(0,Math.min(browserWinSize.width,screen.availWidth-10));
2329 var popupHeight=typeof persistedState.popupHeight=="number"?persistedState.popupHeight:300;
2492 setTimeout(function(){self.selectPanel(Firebug.context.persistedState.selectedPanelName);
2493 if(Firebug.context.persistedState.selectedPanelName=="Console"&&Firebug.CommandLine){Firebug.chrome.focusCommandLine()
2568 }var shouldOpen=forceOpen||!Firebug.context.persistedState.isOpen;
2581 }else{Firebug.context.persistedState.selectedPanelName=oldChrome.selectedPanel.name
2584 var commandLineHeight=Firebug.chrome.commandLineVisible?fbCommandLine.offsetHeight:0,y=Math.max(size.height,topHeight),heightValue=Math.max(y-topHeight-commandLineHeight,0),height=heightValue+"px",sideWidthValue=Firebug.chrome.sidePanelVisible?Firebug.context.persistedState.sidePanelWidth:0,width=Math.max(size.width-sideWidthValue,0)+"px";
2652 Firebug.context.persistedState.height=size.height;
2676 },open:function(){if(!Firebug.context.persistedState.isOpen){Firebug.context.persistedState.isOpen=true;
2690 }},close:function(){if(Firebug.context.persistedState.isOpen){if(this.isInitialized){this.shutdown()
2691 }Firebug.context.persistedState.isOpen=false;
2713 }if(fbVSplitterStyle){fbVSplitterStyle.right=Firebug.context.persistedState.sidePanelWidth+"px"
2740 node.style.height=Firebug.context.persistedState.height+"px";
2765 Firebug.context.persistedState.popupTop=top;
2766 Firebug.context.persistedState.popupLeft=left;
2767 Firebug.context.persistedState.popupWidth=size.width;
2768 Firebug.context.persistedState.popupHeight=size.height;
2866 Firebug.context.persistedState.height=chromeHeight;
2888 Firebug.context.persistedState.sidePanelWidth=x;
3609 var offsetHeight=Firebug.chrome.type=="frame"?Firebug.context.persistedState.height:0;
5653 }},initContext:function(context,persistedState){Firebug.ActivableModule.initContext.apply(this,arguments);
5665 },destroyContext:function(context,persistedState){Firebug.Console.injector.detachConsole(context,context.window)
6233 var _stack=function(command){Firebug.context.persistedState.commandHistory.push(command);
6234 Firebug.context.persistedState.commandPointer=Firebug.context.persistedState.commandHistory.length
6247 Firebug.context.persistedState.commandHistory=Firebug.context.persistedState.commandHistory||[];
6248 Firebug.context.persistedState.commandPointer=Firebug.context.persistedState.commandPointer||-1;
6295 },prevCommand:function(){if(Firebug.context.persistedState.commandPointer>0&&Firebug.context.persistedState.commandHistory.length>0){this.element.value=Firebug.context.persistedState.commandHistory[--Firebug.context.persistedState.commandPointer]
6297 var limit=Firebug.context.persistedState.commandHistory.length-1;
6298 var i=Firebug.context.persistedState.commandPointer;
6299 if(i<limit){element.value=Firebug.context.persistedState.commandHistory[++Firebug.context.persistedState.commandPointer]
6300 }else{if(i==limit){++Firebug.context.persistedState.commandPointer;
6490 if(!selectedElement){Firebug.context.persistedState.selectedHTMLElementId=Firebug.context.persistedState.selectedHTMLElementId&&ElementCache.get(Firebug.context.persistedState.selectedHTMLElementId)?Firebug.context.persistedState.selectedHTMLElementId:ElementCache(Firebug.browser.document.body);
6491 Firebug.HTML.selectTreeNode(Firebug.context.persistedState.selectedHTMLElementId)
6501 },reattach:function(){if(Firebug.context.persistedState.selectedHTMLElementId){Firebug.HTML.selectTreeNode(Firebug.context.persistedState.selectedHTMLElementId)
6518 Firebug.context.persistedState.selectedHTMLElementId=e.id;
7463 var selection=ElementCache.get(Firebug.context.persistedState.selectedHTMLElementId);
8147 var selection=ElementCache.get(Firebug.context.persistedState.selectedHTMLElementId);