I have written this code in Client/main.js
That is working fine on the Desktop, but it is giving error in Android phone
"Oops, looks like there’s no route on the client or the server for url: “http://localhost:12424/JobSeekerRegTemplate1."”
Meteor.startup(function(){
Router.route('/', function () {
this.render('HomeTemplate');
})
Router.route('/NewTemplate');
});
onclicking the button
Template.HomeTemplate.events({
'click #b1': function (e) {
Router.go('/NewTemplate');
}
})