﻿"use strict";

app.filter("filterTwitter", function () {
    return function (text) {
        if (!$.awards.is.nullOrEmpty(text)) {
            return "http://www.twitter.com/" + text.substr(1);
        }
        return null;
    };
});