Georgi Naumov
Georgi Naumov

Reputation: 4211

Resize firefox add-on sdk panel from user

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

Answers (1)

erikvold
erikvold

Reputation: 16538

Yes you can resize the panel, using the resize method

let panel = Panel({ /* ... */ });
panel.resize(width, height);

Upvotes: 6

Related Questions