mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +00:00
20 lines
No EOL
393 B
JavaScript
20 lines
No EOL
393 B
JavaScript
Template.mgmtPage.onCreated(function() {
|
|
|
|
});
|
|
|
|
Template.mgmtPage.onRendered(function() {
|
|
|
|
});
|
|
|
|
Template.mgmtPage.helpers ({
|
|
|
|
});
|
|
|
|
Template.mgmtPage.events ({
|
|
'click .collection-item' (event) {
|
|
event.preventDefault();
|
|
var clickedTarget = event.target.id;
|
|
// console.log("should be going to /" + clickedTarget);
|
|
FlowRouter.go('/' + clickedTarget);
|
|
},
|
|
}); |