Null-Time view helper.

This commit is contained in:
Matthew Dillon 2015-02-03 10:16:03 -09:00
parent 2d21a158fe
commit 2a82dfe3fe

8
app/helpers/null-time.js Normal file
View file

@ -0,0 +1,8 @@
import Ember from 'ember';
export default Ember.Handlebars.makeBoundHelper(function(value, options) {
if (value == null) {
return 'N/A';
}
return value;
});