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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user