mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Added ability to restore a completed lilst from List Management. #27
This commit is contained in:
parent
dcd0074b28
commit
c9c96d214d
5 changed files with 52 additions and 6 deletions
|
|
@ -7,6 +7,7 @@ Template.listMgmtForm.onCreated(function() {
|
|||
Template.listMgmtForm.onRendered(function() {
|
||||
Session.set("listNameMiss", false);
|
||||
Session.set("listNameEditMode", false);
|
||||
Session.set("showCompletedLists", false);
|
||||
});
|
||||
|
||||
Template.listMgmtForm.helpers({
|
||||
|
|
@ -95,5 +96,8 @@ Template.listMgmtForm.events({
|
|||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
'change #isCompleted' (event) {
|
||||
Session.set("showCompletedLists", true);
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue