1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 20:47:58 +01:00

initial commit of multiline echo()

This commit is contained in:
Martin Stubenschrott
2007-06-27 13:10:44 +00:00
parent f43ad36110
commit 10aba69c3d
3 changed files with 20 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ window.addEventListener("load", init, false);
function init() //{{{
{
window.dump("in init\n");
window.dump("Vimperator init\n");
// init the main object
vimperator = new Vimperator;
vimperator.log("Initializing vimperator object...", 1);
@@ -315,7 +315,7 @@ function Vimperator() //{{{
*/
this.log = function(msg, level)
{
// if(Options.getPref("verbose") >= level) FIXME: hangs vimperator
// if(Options.getPref("verbose") >= level) // FIXME: hangs vimperator, probably timing issue --mst
console_service.logStringMessage('vimperator: ' + msg);
}