diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-07-23 13:06:09 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-07-23 13:06:09 -0700 |
commit | a72e958ebf143464f4cd8df90d48f3268aeeea94 (patch) | |
tree | 0dc06750490c637e48b2f1b9ae6458e1b52696ef /ext/fg/js/client.js | |
parent | a889e1ffaa8b64b18a5b8416db1838ab497f52d6 (diff) |
Support looking up image tags
Diffstat (limited to 'ext/fg/js/client.js')
-rw-r--r-- | ext/fg/js/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/client.js b/ext/fg/js/client.js index 46e4683e..67400f34 100644 --- a/ext/fg/js/client.js +++ b/ext/fg/js/client.js @@ -108,7 +108,7 @@ class Client { return; } - if (this.lastTextSource !== null && this.lastTextSource.compareOrigin(textSource) === 0) { + if (this.lastTextSource !== null && this.lastTextSource.equals(textSource)) { return; } |