diff options
author | Kris Maglione <maglione.k@gmail.com> | 2008-12-07 14:39:07 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2008-12-07 14:39:07 -0500 |
commit | bdc8b4794c174844f14b4b1def7fa729be7ef13c (patch) | |
tree | 590b21299dd87ebebc60a62b8a23b1eab939c559 /common | |
parent | 6453aa2cdc7c7eaabd9aafa6c4159d7df403a802 (diff) | |
download | pentadactyl-bdc8b4794c174844f14b4b1def7fa729be7ef13c.tar.gz |
Fix occurances of this.generic in completion.js
Diffstat (limited to 'common')
-rw-r--r-- | common/content/template.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/content/template.js b/common/content/template.js index a080863d..a8ad93e5 100644 --- a/common/content/template.js +++ b/common/content/template.js @@ -223,7 +223,7 @@ const template = { jumps: function jumps(index, elems) { - return this.generic( + return this.commandOutput( <table> <tr style="text-align: left;" highlight="Title"> <th colspan="2">jump</th><th>title</th><th>URI</th> @@ -242,7 +242,7 @@ const template = { options: function options(title, opts) { - return this.generic( + return this.commandOutput( <table> <tr highlight="Title" align="left"> <th>--- {title} ---</th> @@ -281,7 +281,7 @@ const template = { tabular: function tabular(headings, style, iter) { /* This might be mind-bogglingly slow. We'll see. */ - return this.generic( + return this.commandOutput( <table> <tr highlight="Title" align="left"> { @@ -303,7 +303,7 @@ const template = { usage: function usage(iter) { - return this.generic( + return this.commandOutput( <table> { this.map(iter, function (item) |