get_my/client/AdminMgmt/MgmtPage/mgmtPage.js
2022-09-05 09:39:54 -05:00

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);
},
});