Skip to content

Instantly share code, notes, and snippets.

@freaktechnik
Created January 19, 2016 15:18
Show Gist options
  • Select an option

  • Save freaktechnik/e0eb57b08a5c18ae9eb9 to your computer and use it in GitHub Desktop.

Select an option

Save freaktechnik/e0eb57b08a5c18ae9eb9 to your computer and use it in GitHub Desktop.
const tabs = require("sdk/tabs");
var optionsTab;
function OptionsPanel(){
if(optionsTab == null){
tabs.once("open", (tab) => {
optionsTab = tab;
optionsTab.once("close", () => {
optionsTab = null;
});
});
tabs.open( data.url("OptionsPanel.html") );
}else{
optionsTab.activate();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment