clean up possible js incompatibilities

clean up added commas and missing semicolons which generate
warnings in js2-mode because they could lead to browser issues.

Change-Id: Iebbfa54b13a3db0de477904457c7ede57dd233d4
This commit is contained in:
Sean Dague 2014-01-10 15:30:23 -05:00
parent d15fd0647e
commit 98194f3eb9

View File

@ -152,8 +152,8 @@ function get_sparkline_url(pipeline_name) {
hideAxes: true,
hideGrid: true,
target: [
"color(stats.gauges.zuul.pipeline."+pipeline_name+".current_changes, '6b8182')",
],
"color(stats.gauges.zuul.pipeline."+pipeline_name+".current_changes, '6b8182')"
]
});
}
return window.zuul_sparkline_urls[pipeline_name];
@ -197,11 +197,11 @@ function format_pipeline(data) {
}
html += name + '</a></div>';
}
html += '<table>'
html += '<table>';
$.each(head, function(change_i, change) {
html += format_change(change, change_queue);
});
html += '</table></div>'
html += '</table></div>';
});
});
@ -294,7 +294,7 @@ function format_change(change, change_queue) {
// Job listing from here down
html += '<div class="jobs"';
if (display == false) {
html += ' style="display: none;"'
html += ' style="display: none;"';
}
html += '>';
@ -518,7 +518,7 @@ $(function() {
} else {
val.show(100);
}
})
});
}).live('keyup', function () {
$('a.save-filter')
.removeClass('hidden')