In the panel object

function HelloWorldPanel() {} 
HelloWorldPanel.prototype = extend(Firebug.Panel, 
{ 
    name: "HelloWorld", 
    title: "Hello World!", 

    initialize: function() { 
      Firebug.Panel.initialize.apply(this, arguments); 
    }, 

    show: function(state) {
    },

    hide: function(state) {
    }
}); 

Firebug.registerPanel(HelloWorldPanel); 

}});

Honza

-- 
You received this message because you are subscribed to the Google
Groups "Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
https://groups.google.com/forum/#!forum/firebug

Reply via email to