This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/not-found/route.js
Matthew Dillon 0c8fc4db6c 404/Not Found
Fixes #21
2015-10-14 11:24:40 -07:00

11 lines
247 B
JavaScript

import Ember from 'ember';
export default Ember.Route.extend({
redirect: function() {
let url = this.router.location.formatURL('/not-found');
if (window.location.pathname !== url) {
this.transitionTo('/not-found');
}
}
});