Пример #1
0
        protected override string GetTweetHTML(TweetNotification tweet)
        {
            string html = tweet.GenerateHtml(BodyClasses, this);

            foreach (InjectedHTML injection in plugins.NotificationInjections)
            {
                html = injection.InjectInto(html);
            }

            return(html);
        }
Пример #2
0
 protected virtual string GetTweetHTML(TweetNotification tweet)
 {
     return(tweet.GenerateHtml(IsCursorOverBrowser ? "td-hover" : string.Empty));
 }