legacy-dotfiles/conkeror/.conkerorrc/firebug.js

13 lines
450 B
JavaScript
Raw Permalink Normal View History

2014-08-20 23:46:21 +02:00
define_variable("firebug_url",
"http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js");
function firebug (I) {
var doc = I.buffer.document;
var script = doc.createElement('script');
script.setAttribute('type', 'text/javascript');
script.setAttribute('src', firebug_url);
script.setAttribute('onload', 'firebug.init();');
doc.body.appendChild(script);
}
interactive("firebug", "open firebug lite", firebug);