Removed handling for ids of "None"

The server no longer sends them

Change-Id: Idc555754c284c2ebfc4dd5ba9fdd10f1655a7945
This commit is contained in:
Alex Gaynor 2013-10-03 19:46:20 -07:00
parent 5601d93348
commit 4e8e6cc976

View File

@ -233,7 +233,7 @@ function format_change(change, change_queue) {
html += '<span class="project">' + change['project'] + '</span>';
var id = change['id'];
var url = change['url'];
if (id !== "None" && id !== null) {
if (id !== null) {
if (id.length == 40) {
id = id.substr(0,7);
}