1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 03:22:26 +01:00

* return after quitting last tab

* update statusline on browser start
This commit is contained in:
Martin Stubenschrott
2007-10-17 20:42:01 +00:00
parent 9f0b1964eb
commit 6ab3f8b8a6
3 changed files with 13 additions and 1 deletions

View File

@@ -1083,6 +1083,16 @@ function StatusLine() //{{{
status_bar.setAttribute("class", "chromeclass-status " + highlight_group);
};
// update all fields of the statusline
this.update = function()
{
this.updateUrl();
this.updateInputBuffer();
this.updateProgress();
this.updateTabCount();
this.updateBufferPosition();
}
// if "url" is ommited, build a usable string for the URL
this.updateUrl = function(url)
{