mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-26 15:58:50 +00:00
22 lines
No EOL
456 B
JavaScript
22 lines
No EOL
456 B
JavaScript
import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
|
|
|
|
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);
|
|
},
|
|
}); |