font-awesome: port watch.js and compact-boardlist.js to 3.0

This commit is contained in:
czaks 2014-01-17 00:36:59 +01:00
parent 8e31e52a29
commit ebfc80c665
2 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@ if (device_type == 'desktop') {
}
else if (item.name.match(/^fa_/)) {
var icon = item.name.replace(/^fa_/, '')
$('<a class="cb-item cb-fa" href="'+categories[i].boards[0].href+'"><i class="icon-'+icon+' icon"></i></a>')
$('<a class="cb-item cb-fa" href="'+categories[i].boards[0].href+'"><i class="fa-'+icon+' fa"></i></a>')
.appendTo(topbl)
}
else {
@ -47,7 +47,7 @@ if (device_type == 'desktop') {
tag = $("<a href='"+board.href+"'><span>"+board.name+"</span><span class='cb-uri'>/"+board.uri+"/</span></a>")
}
else {
tag = $("<a href='"+board.href+"'><span>"+board.uri+"</span><span class='cb-uri'><i class='icon icon-globe'></i></span></a>")
tag = $("<a href='"+board.href+"'><span>"+board.uri+"</span><span class='cb-uri'><i class='fa fa-globe'></i></span></a>")
}
tag
.addClass("cb-menuitem")