google chrome extension - Scroll bar in Hosted Apps -
i'm working on packaged app chrome. it's launch page access info localstorage , output html. problem app launches in separate window (shell/panel) no scroll bars. how can bring scroll bar or launch tab? i'm aware of "launch": { "local_path": "app.html" }
trick, depreciation. i'm using "background": { "scripts": ["background.js"] }
add appropriate overflow
style html
in css:
html { overflow: auto; }
(you might want utilize overflow-x
or overflow-y
depending on needs)
google-chrome-extension google-chrome-app
No comments:
Post a Comment