I think I fixed this problem at
https://github.com/firebug/extension-examples/commit/1fe3c75812ee37a5de7b3319f0ab6e254fed8ab0
Please pull the changes and let me know if it helps.
Thanks!
Honza
On Aug 23, 9:23 pm, First Steps <
zilfore...@gmail.com> wrote:
> Hi i got Firefox 14.0.1, Firebug 1.10.2 and fbtrace 1.10
https://getfirebug.com/releases/fbtrace/1.10/.
>
> I used example Jan Odvarko HelloBootAMDhttps://
github.com/firebug/extension-examples/tree/master/HelloAMD
>
> Extension works but there is no logs in Fbtrace and in options there is noHELLOBOOTAMD
> .
> So i added fromhttps://
getfirebug.com/wiki/index.php/FBTrace
>
> pref("extensions.firebug.DBG_HELLOBOOTAMD", false); with true and false
>
> and into function firebugStartup() in bootstrap.js code:
> Components.utils.import("resource://firebug/firebug-trace-service.js");
> var FBTrace = traceConsoleService.getTracer("extensions.firebug");
>
> Still dont see button in options but if I add into main.js
> FBTrace.sysout("helloBootAMD; HelloBootAMD extension initialize");
> without if (FBTrace.DBG_HELLOBOOTAMD) ot works.
>
> So what I do wrong?
>
> Also my second question. If I disable this example extension it is removed from Firebug instantly but if I enable it again, It is shown after Firefox restart.
> Is it posible to add it instant like when installing?