﻿"use strict";

// Filter for outputting the nominee name, displays missing message if the name is missing or empty
app.filter("displayNomineeName", function () {
    return function (text) {
        if (!$.awards.is.nullOrEmpty(text))
            return text;
        return "[ Missing Nominee Name ]";
    };
});