1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 09:17:59 +01:00

use the hl-Title class for the completion widget title

This commit is contained in:
Doug Kearns
2008-09-16 16:09:14 +00:00
parent 2fe5bd2913
commit 0d2e00eb6b
8 changed files with 15 additions and 15 deletions

View File

@@ -841,7 +841,7 @@ liberator.Options = function () //{{{
list: function (onlyNonDefault, scope)
{
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
"<table><tr align=\"left\" class=\"hl-Title\"><th>--- Options ---</th></tr>";
"<table><tr class=\"hl-Title\" align=\"left\"><th>--- Options ---</th></tr>";
var name, value, def;
if (!scope)
@@ -893,7 +893,7 @@ liberator.Options = function () //{{{
var prefArray = prefService.getChildList("", { value: 0 });
prefArray.sort();
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
"<table><tr align=\"left\" class=\"hl-Title\"><th>--- " + liberator.config.hostApplication +
"<table><tr class=\"hl-Title\" align=\"left\"><th>--- " + liberator.config.hostApplication +
" Options ---</th></tr>";
var name, value, defaultValue;