mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-08 04:54:11 +01:00
added ###VERSION### and ###DATE### for being seded in the Makefile
This commit is contained in:
@@ -164,15 +164,16 @@ table.settings th {\
|
||||
ret += "<code>" +beg+ usage +end+ '</code><br/>';
|
||||
}
|
||||
ret += '</td><td>';
|
||||
if (func)
|
||||
ret += func.call(this, commands[i]);
|
||||
if (commands[i][SHORTHELP])
|
||||
{
|
||||
if(func)
|
||||
ret += "<br/>";
|
||||
ret += "<b>";
|
||||
ret += commands[i][SHORTHELP]; // the help description
|
||||
ret += "</b><br>";
|
||||
if(func) // for settings whe print default values here, e.g.
|
||||
{
|
||||
ret += func.call(this, commands[i]);
|
||||
ret += "<br/>";
|
||||
}
|
||||
if (commands[i][HELP])
|
||||
ret += commands[i][HELP]; // the help description
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ var g_settings = [/*{{{*/
|
||||
["focusedhintstyle", "fhs"],
|
||||
["focusedhintstyle", "fhs"],
|
||||
"CSS specification of focused hints appearance",
|
||||
"null",
|
||||
null,
|
||||
"string",
|
||||
null,
|
||||
function(value) { set_pref("focusedhintstyle", value); },
|
||||
|
||||
@@ -26,7 +26,7 @@ the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
}}} ***** END LICENSE BLOCK *****/
|
||||
|
||||
var g_vimperator_version = "0.4 (CVS) [>=28/04/2007]";
|
||||
var g_vimperator_version = "###VERSION### (created: ###date###)";
|
||||
|
||||
const MODE_NORMAL = 1;
|
||||
const MODE_INSERT = 2;
|
||||
|
||||
Reference in New Issue
Block a user