diff options
| author | Hunternif | 2019-04-09 02:14:21 +0700 |
|---|---|---|
| committer | Hunternif | 2019-04-09 02:14:21 +0700 |
| commit | c35e89b83cdbfbbf0a88ddfd7b4a177f1ae419ba (patch) | |
| tree | 0244e27461df69ec5373e3ac6292751b0b767dad /client/js | |
| parent | 07d8a9b5d1652695f012c79db00eb5e5ef3a6e48 (diff) | |
Disable overlay on all posts
Diffstat (limited to 'client/js')
| -rw-r--r-- | client/js/controls/post_content_control.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/js/controls/post_content_control.js b/client/js/controls/post_content_control.js index 856fb77..ca76e10 100644 --- a/client/js/controls/post_content_control.js +++ b/client/js/controls/post_content_control.js @@ -27,6 +27,9 @@ class PostContentControl { this._post.addEventListener( 'changeContent', e => this._evtPostContentChange(e)); + + // Always disable overlay, because I'm not going to use notes + this.disableOverlay(); } disableOverlay() { |