not-found.js 266 B

1234567891011
  1. import Ember from 'ember';
  2. import ResetScroll from 'misago/mixins/reset-scroll';
  3. export default Ember.Route.extend(ResetScroll, {
  4. actions: {
  5. didTransition: function() {
  6. // Not found route transitions to error404
  7. throw {status: 404};
  8. }
  9. }
  10. });