Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resize popup.html in chrome extension

I have this chrome extension that shows some content in the popup.html. As the content changes at "run-time" the popup.html sizes change too, expanding where there's more content to show. The problem that I have is that the popup.html don't resize itself back according to a smaller content. How can I do that?

like image 368
Advicer Avatar asked Feb 29 '12 11:02

Advicer


1 Answers

Add <!DOCTYPE html> to the very beginning of the popup.html - it looks like you've forgotten to add it

like image 102
cyberskunk Avatar answered Sep 23 '22 02:09

cyberskunk