What is the best way to send a variable to a panel? Do people use mustache.js? Right now I am able to load an HTML file but I am not able to communicate with it once i call panel.show()
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To communicate between the panel page and the add-on’s module you should use
panel.port(from the addon module) orself.port(from the content script). See Communicating with Content Scripts for details.