You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I foolishly forgot to return page inside of a filter and the Chrome tab on OS X would completely hang and fail to quit. So much so that I required a few OS level restarts before I found my issue.
Will hang Chrome, possible other browsers as well.
Meteor.Router.filters({
'someFilter': function (page) {
//return page;
}
});
Works like a charm.
Meteor.Router.filters({
'someFilter': function (page) {
return page;
}
});
This is not a major issue but you may want to add a warning. Would be great if you could throw an exception when this happens.
Cheers.
The text was updated successfully, but these errors were encountered:
I foolishly forgot to return page inside of a filter and the Chrome tab on OS X would completely hang and fail to quit. So much so that I required a few OS level restarts before I found my issue.
Will hang Chrome, possible other browsers as well.
Works like a charm.
This is not a major issue but you may want to add a warning. Would be great if you could throw an exception when this happens.
Cheers.
The text was updated successfully, but these errors were encountered: