How can i show the sidebar
ui component of my addon by clicking on the 'show-sidebar' li
in the panel
ui component? i tried the following:
panel.html
<body>
<ul>
<li onclick="addon.port.emit ('login')">Login</li>
<li onclick="addon.port.emit ('show-sidebar')">Show Sidebar</li>
</ul>
</body>
main.js
var sidebar = require("sdk/ui/sidebar").Sidebar ({...});
var panel = require("sdk/panel").Panel (
{
height: 59,
width: 120,
contentURL: Self.data.url("panel.html"),
contentScriptWhen: "ready",
onAttach: function()
{
panel.port.on ("login", function (data)
{
Tabs.open ("login-page-url");
panel.hide();
});
panel.port.on ("show-sidebar", function (data)
{
sidebar.show();
panel.hide();
});
}
});
but it's giving me this error:
console.error: my-addon:
Message: TypeError: sidebar.show is not a function
The inline javascript is not allowed in the embedded html. You should use the property
contentScriptFile
of Panel.I post you an example using your code.
data/panel.html
data/script.js
lib/main.js
You can use another trigger event for when to loading js file see here. I hope this example can help you.