1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-31 07:53:39 +02:00

replace readonly textboxes in the commandline and statusbar with labels and

simplify the skin styling
This commit is contained in:
Doug Kearns
2007-07-17 14:55:41 +00:00
parent e884844dad
commit 74322fce1c
6 changed files with 96 additions and 91 deletions

View File

@@ -531,10 +531,11 @@ function Marks() //{{{
// NS_ERROR_NOT_AVAILABLE" exception when used here?
umarks.sort(function(a, b) {
if (a[0] < b[0])
return -1
return -1;
else if (a[0] > b[0])
return 1;
return 0
else
return 0;
});
return lmarks.concat(umarks);