﻿"use strict";

app.filter("filterShowID", function () {
    return function (details) {
        if (details.notInListShowID) {
            return details.customShowID;
        }
        else {
            return details.showID;
        }
    };
});