diff options
Diffstat (limited to 'ext/fg/js/float.js')
| -rw-r--r-- | ext/fg/js/float.js | 19 | 
1 files changed, 2 insertions, 17 deletions
| diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 4b3cd848..089c9422 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -32,25 +32,12 @@ class DisplayFloat extends Display {      onError(error) {          if (window.yomichan_orphaned) { -            this.onOrphaned(); +            this.setContentOrphaned();          } else {              logError(error, true);          }      } -    onOrphaned() { -        const definitions = document.querySelector('#definitions'); -        const errorOrphaned = document.querySelector('#error-orphaned'); - -        if (definitions !== null) { -            definitions.style.setProperty('display', 'none', 'important'); -        } - -        if (errorOrphaned !== null) { -            errorOrphaned.style.setProperty('display', 'block', 'important'); -        } -    } -      onSearchClear() {          window.parent.postMessage('popupClose', '*');      } @@ -121,10 +108,8 @@ DisplayFloat.onKeyDownHandlers = {  };  DisplayFloat.messageHandlers = { -    termsShow: (self, {definitions, context}) => self.termsShow(definitions, context), -    kanjiShow: (self, {definitions, context}) => self.kanjiShow(definitions, context), +    setContent: (self, {type, details}) => self.setContent(type, details),      clearAutoPlayTimer: (self) => self.clearAutoPlayTimer(), -    orphaned: (self) => self.onOrphaned(),      setCustomCss: (self, {css}) => self.setCustomCss(css),      initialize: (self, {options, popupInfo, url, childrenSupported}) => self.initialize(options, popupInfo, url, childrenSupported)  }; |