diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-09-06 22:47:29 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-09-06 22:47:29 +0200 |
commit | 74fba0a817b414579f3223ac508b4fdb8faced98 (patch) | |
tree | dca966416c200e7b929a1b170b83be0e90095d5e /client/components/lists/listBody.js | |
parent | 54bc9d0dcbd9c2a0c3099a9ae46126fb1b81779d (diff) | |
download | wekan-74fba0a817b414579f3223ac508b4fdb8faced98.tar.gz wekan-74fba0a817b414579f3223ac508b4fdb8faced98.tar.bz2 wekan-74fba0a817b414579f3223ac508b4fdb8faced98.zip |
Fix a recurrent English typo
Diffstat (limited to 'client/components/lists/listBody.js')
-rw-r--r-- | client/components/lists/listBody.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js index cc8c94cc..2e00cb4f 100644 --- a/client/components/lists/listBody.js +++ b/client/components/lists/listBody.js @@ -67,7 +67,7 @@ BlazeComponent.extendComponent({ if (MultiSelection.isActive() || evt.shiftKey) { evt.stopImmediatePropagation(); evt.preventDefault(); - const methodName = evt.shiftKey ? 'toogleRange' : 'toogle'; + const methodName = evt.shiftKey ? 'toggleRange' : 'toggle'; MultiSelection[methodName](this.currentData()._id); // If the card is already selected, we want to de-select it. @@ -87,7 +87,7 @@ BlazeComponent.extendComponent({ toggleMultiSelection(evt) { evt.stopPropagation(); evt.preventDefault(); - MultiSelection.toogle(this.currentData()._id); + MultiSelection.toggle(this.currentData()._id); }, events() { |