Reputation: 4211
Is is possible firefox add-on SDK panel to be resized from user? I have read the documentation here: https://developer.mozilla.org/en-US/Add-ons/SDK/High-Level_APIs/panel but not find way how to do this.
Upvotes: 1
Views: 408
Reputation: 16538
Yes you can resize the panel, using the resize method
let panel = Panel({ /* ... */ });
panel.resize(width, height);
Upvotes: 6