diff options
| author | Alex Yatskov <alex@foosoft.net> | 2017-09-24 11:01:40 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2017-09-24 11:01:40 -0700 | 
| commit | 00c20aed4253da6506194d90a6102920d3235ced (patch) | |
| tree | cfb2fd51a441241cb333a208b3ce3130add93953 /ext/mixed/js | |
| parent | 3a1aad07d61411f634e86f905babd6fbbac2eae1 (diff) | |
| parent | 29812c1b036d3eae9b5b222219f556aec712c3e8 (diff) | |
Merge branch 'master' into firefox-amo
Diffstat (limited to 'ext/mixed/js')
| -rw-r--r-- | ext/mixed/js/display.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 47efd195..75ee339a 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -32,11 +32,11 @@ class Display {      }      onError(error) { -        throw 'override me'; +        throw 'Override me';      }      onSearchClear() { -        throw 'override me'; +        throw 'Override me';      }      onSourceTermView(e) { @@ -350,7 +350,7 @@ class Display {                  Display.adderButtonFind(index, mode).addClass('disabled');                  Display.viewerButtonFind(index).removeClass('pending disabled').data('noteId', noteId);              } else { -                throw 'note could note be added'; +                throw 'Note could note be added';              }          } catch (e) {              this.onError(e); |