I have the following code that displays a sidebar XUL window:
<overlay id="my-plugin"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript"
src="chrome://my-plugin/content/js/extension.js" />
<window id="main-window">
<deck flex="1" id="tab-view-deck">
<vbox flex="1" id="browser-panel">
<deck id="content-deck" flex="1">
<hbox id="browser" flex="1">
<splitter />
<browser id="my-plugin-sidebar-browser"
src="chrome://my-plugin/content/views/index.html"
width="400px"
></browser>
</hbox>
</deck>
</vbox>
</deck>
</window>
</overlay>
The overlay displays fine when I run the plugin - the browser loads and I can see the overlay already prepared.
However, I wanted to display the overlay on click of a toolbar button. The toolbar button is created using:
CustomizableUI.createWidget({
id: "my-plugin-toolbar-button",
defaultArea: "nav-bar",
removable: true,
label: "My Plugin",
tooltiptext: "Open the sidebar overlay!",
onClick: onClick
})
The onClick
right now just injects some scripts into the page. How do I use the same onClick
to show/hide the overlay?
With no animation:
With animation:
codes are untested