﻿"use strict";

app.filter("filterPublisher", function () {
    return function (details) {
        if (details.publisherNotInList) {
            return details.customPublisher;
        }
        else {
            return details.publisher;
        }
    };
});