2014-10-30 21:44:22 +01:00
|
|
|
import Ember from "ember";
|
|
|
|
|
2014-07-06 17:37:54 +02:00
|
|
|
export default Ember.ObjectController.extend({
|
|
|
|
is404: function(){
|
|
|
|
return this.get('status') === 404;
|
2014-10-30 20:43:22 +01:00
|
|
|
}.property('status')
|
2014-07-06 17:37:54 +02:00
|
|
|
});
|