Team:UNITN-Trento/JS/Styles/Labpost

From 2013.igem.org

Revision as of 09:20, 25 June 2013 by Ggirelli (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

function setPost(id) { var title = $(id).attr("data-title"); var date = $(id).attr("data-date"); who = $(id).attr("data-user").split("-"); var tags = $(id).attr("data-tag").split("-"); var uri = "https://2013.igem.org/wiki/index.php?title=Team:UNITN-Trento/Notebook";

var wholow = []; for (var i = 0; i < who.length; i++) { wholow.push(who[i].toLowerCase()); }

var who_box = $("
"); var top_box = $("
"); var tag_box = $("
");

$(top_box).addClass("tn-top");

if (title != "") { $(top_box).append("
"+title+"
"); } $(top_box).append("
"+date+"
");

if (wholow.indexOf("bruno") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/c/c2/Bruno.jpg' />"); } if (wholow.indexOf("caterina") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/e/ed/Cate.jpg' />"); } if (wholow.indexOf("emil") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/5/50/Emil.JPG' />"); } if (wholow.indexOf("fabio") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/9/9f/Fabio.jpg' />"); } if (wholow.indexOf("gabriele") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/2/26/Gire.jpg' />"); } if (wholow.indexOf("michele") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/2/2e/Pedro.jpg' />"); } if (wholow.indexOf("thomas") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/4/42/Thomas.png' />"); } if (wholow.indexOf("viola") != -1) { $(who_box).append("<img src='http://www.filopoe.it/old/mediawiki/images/2/23/Viola.jpg' />"); } $(who_box).addClass("tn-faces");

$(tag_box).addClass("tn-tags"); for (var i = 0; i < tags.length; i++) { if (i == 0) { $(tag_box).html("Tags
"); }

$(tag_box).html($(tag_box).html()+""+tags[i]+""); }

$(id).prepend(top_box); $(id).prepend(who_box); $(id).append(tag_box);

$(id).append("
<a href='"+uri+id+"'>Permalink</a>
")

}