Merge pull request #5050 from Snuffleupagus/reftest-analyzer-differences-key

In the reftest analyzer, make it possible to toggle "Circle differences" with the D key
This commit is contained in:
Tim van der Meij 2014-07-16 15:56:52 +02:00
commit 37815ec87e

View File

@ -464,6 +464,9 @@ window.onload = function() {
val = 1;
}
document.querySelector('input[name="which"][value="' + val + '"]').click();
} else if (event.which === 68) {
// 'd' toggle differences
document.getElementById("differences").click();
} else if (event.which === 78 || event.which === 80) {
// 'n' next image, 'p' previous image
var select = gSelected;