Remove encode from the project-refs-dropdown renderRow method

This commit is contained in:
Luke Bennett 2016-10-23 01:22:03 +01:00
parent a98ad03ba1
commit eed4b2c5c4
No known key found for this signature in database
GPG key ID: A738E9C68D3BF31A

View file

@ -82,7 +82,7 @@
if (ref.header != null) {
return $('<li />').addClass('dropdown-header').text(ref.header);
} else {
link = $('<a />').attr('href', '#').addClass(ref === selected ? 'is-active' : '').text(ref).attr('data-ref', escape(ref));
link = $('<a />').attr('href', '#').addClass(ref === selected ? 'is-active' : '').text(ref).attr('data-ref', ref);
return $('<li />').append(link);
}
},