Skip to content

Commit

Permalink
Do not append warn
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrodob committed Jan 25, 2016
1 parent 762170d commit b14f274
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion describe/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h2 id="question">What should the user do? Briefly explain here...</h2>
}
p.text(msg);
$(".modal-title").text(title);
$(".modal-body").append(p);
$(".modal-body").html(p);
$("#warning").modal();
}

Expand Down
2 changes: 1 addition & 1 deletion describe/template_bootstrap2.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h2 id="question">What should the user do? Briefly explain here...</h2>
}
p.text(msg);
$(".modal-title").text(title);
$(".modal-body").append(p);
$(".modal-body").html(p);
$("#warning").modal();
}

Expand Down
2 changes: 1 addition & 1 deletion emotions/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h2 id="question">What emotion can you identify on this tweet?</h2>
}
p.text(msg);
$(".modal-title").text(title);
$(".modal-body").append(p);
$(".modal-body").html(p);
$("#warning").modal();
}

Expand Down
2 changes: 1 addition & 1 deletion emotions/template_bootstrap2.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h2 id="question">What emotion can you identify on this tweet?</h2>
}
p.text(msg);
$(".modal-title").text(title);
$(".modal-body").append(p);
$(".modal-body").html(p);
$("#warning").modal();
}

Expand Down

0 comments on commit b14f274

Please sign in to comment.