Skip to content

Instantly share code, notes, and snippets.

@mait
Created April 9, 2010 08:30
Show Gist options
  • Save mait/360989 to your computer and use it in GitHub Desktop.
Save mait/360989 to your computer and use it in GitHub Desktop.
if (getBrowser().canGoBack) {
gBrowser.goBack();
} else {
gBrowser.removeCurrentTab();
}
if (getBrowser().canGoForward) {
gBrowser.goForward();
} else {
gBrowser.undoRemoveTab(); // It didn't work
}
@mait
Copy link
Author

mait commented Apr 9, 2010

How can I get undo close tab function?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment