Commit ff308c77 authored by Mike Greiling's avatar Mike Greiling

resolve merge conflicts in gl_dropdown.js

parent a6356438
...@@ -624,16 +624,12 @@ GitLabDropdown = (function() { ...@@ -624,16 +624,12 @@ GitLabDropdown = (function() {
var link = document.createElement('a'); var link = document.createElement('a');
link.href = url; link.href = url;
<<<<<<< HEAD
link.textContent = text;
=======
if (this.highlight) { if (this.highlight) {
link.innerHTML = text; link.innerHTML = text;
} else { } else {
link.textContent = text; link.textContent = text;
} }
>>>>>>> upstream/master
if (selected) { if (selected) {
link.className = 'is-active'; link.className = 'is-active';
......
Markdown is supported
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