diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/source.js | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/ext/fg/js/source.js b/ext/fg/js/source.js index 0b21b5cc..b3119d40 100644 --- a/ext/fg/js/source.js +++ b/ext/fg/js/source.js @@ -118,7 +118,8 @@ class TextSourceRange {          return !(              style.visibility === 'hidden' ||              style.display === 'none' || -            parseFloat(style.fontSize) === 0); +            parseFloat(style.fontSize) === 0 +        );      }      static getRubyElement(node) { |