Fix alerts

This commit is contained in:
calzoneman 2013-06-19 18:07:11 -04:00
parent e620605458
commit c369a10961
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ function makeAlert(title, text, klass) {
var al = $("<div/>").addClass("alert")
.addClass(klass)
.text(text);
.html(text);
$("<br/>").prependTo(al);
$("<strong/>").text(title).prependTo(al);
$("<button/>").addClass("close pull-right").html("&times;")