mirror of
https://github.com/wekan/wekan.git
synced 2026-02-27 18:34:07 +01:00
Fix a recurrent English typo
This commit is contained in:
parent
54bc9d0dcb
commit
74fba0a817
10 changed files with 25 additions and 25 deletions
|
|
@ -44,7 +44,7 @@ BlazeComponent.extendComponent({
|
|||
}
|
||||
},
|
||||
|
||||
toogle() {
|
||||
toggle() {
|
||||
this._isOpen.set(!this._isOpen.get());
|
||||
},
|
||||
|
||||
|
|
@ -96,7 +96,7 @@ BlazeComponent.extendComponent({
|
|||
// XXX Hacky, we need some kind of `super`
|
||||
const mixinEvents = this.getMixin(Mixins.InfiniteScrolling).events();
|
||||
return mixinEvents.concat([{
|
||||
'click .js-toogle-sidebar': this.toogle,
|
||||
'click .js-toggle-sidebar': this.toggle,
|
||||
'click .js-back-home': this.setView,
|
||||
}]);
|
||||
},
|
||||
|
|
@ -129,7 +129,7 @@ Template.memberPopup.helpers({
|
|||
|
||||
Template.memberPopup.events({
|
||||
'click .js-filter-member'() {
|
||||
Filter.members.toogle(this.userId);
|
||||
Filter.members.toggle(this.userId);
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-change-role': Popup.open('changePermissions'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue