Hello,
I am modifying room.js in this location:
./app/ui/client/views/app/room.js
Please note that I am modifying rocketchat 3.10.0, which is a version of rocketchat which used meteor.
I am having trouble running a simple:
console.log(“hello”);
However, this command is running fine in the same script:
Template.room.events({
“click #payNow”: function () {
FlowRouter.go(/payNow
);
},
});
Why might console.log not work? It seems like there may be some setting on the backend of rocketchat which is stopping anything from logging to my console, as I have tested this with another meteor project and it works totally fine.
Does anyone have any suggestions? Even a workaround would be great.
Much appreciated,
Gavin