Skip to content
Snippets Groups Projects
Commit eeaeee2e authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Fix to taglist injection.

parent 963c2977
No related merge requests found
...@@ -192,7 +192,7 @@ function refreshTagList(loggedin) { ...@@ -192,7 +192,7 @@ function refreshTagList(loggedin) {
url: url, url: url,
complete: function(response) { complete: function(response) {
if(response.status == 200) { if(response.status == 200) {
tagList.html(response.responseText); tagList.replaceWith(response.responseText);
if(loggedin) { if(loggedin) {
$('#tagList').addClass('loggedin'); $('#tagList').addClass('loggedin');
} else { } else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment