Change icon on sequences items on the sitebar

This commit is contained in:
Dan Sosedoff
2016-01-10 15:50:16 -06:00
parent 0c0d0ea3a3
commit b14b1cd60d
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -111,7 +111,7 @@ function loadSequences() {
getSequences(function(data) {
data.forEach(function(item) {
$("<li><span><i class='fa fa-chevron-right'></i> " + item + " </span></li>").appendTo("#sequences");
$("<li><span><i class='fa fa-circle-o'></i> " + item + " </span></li>").appendTo("#sequences");
});
});
}