diff options
| author | mrmr1993 | 2014-12-29 10:07:25 +0000 |
|---|---|---|
| committer | mrmr1993 | 2014-12-29 10:07:25 +0000 |
| commit | e5e0ddf24c7975e994b816651beaa4d0cefb94b7 (patch) | |
| tree | 00410cda42fd28ad6cfb2de14fc232667fbdb274 | |
| parent | 5ea0f75a00b592956981bf8f6f7a0d2fa89620ae (diff) | |
| download | vimium-e5e0ddf24c7975e994b816651beaa4d0cefb94b7.tar.bz2 | |
Initialise hide/show styles for UIComponent
| -rw-r--r-- | content_scripts/ui_component.coffee | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content_scripts/ui_component.coffee b/content_scripts/ui_component.coffee index f47719e5..ce1af082 100644 --- a/content_scripts/ui_component.coffee +++ b/content_scripts/ui_component.coffee @@ -2,8 +2,8 @@ class UIComponent iframeElement: null iframePort: null messageEventListeners: [] - showStyle: "" - hideStyle: "" + showStyle: "display: block;" + hideStyle: "display: none;" constructor: (iframeUrl, className) -> @iframeElement = document.createElement "iframe" |
