Login not working in Firefox in Meteor
问题 I am trying to develop the login functionality in meteor, and I am using jade-handlebars and coffeescript. My coffeescript page: Template.navigation.events "submit #login-form": (e, t) -> e.preventDefault() if Meteor.userId() Meteor.logout() else # retrieve the input field values email = t.find("#login-email").value password = t.find("#login-password").value # If validation passes, supply the appropriate fields to the # Meteor.loginWithPassword() function. Meteor.loginWithPassword email,