Files
gitx/html/views/diff/diffWindow.js
T
German Laullon 4b85580e2f diff on file view
2010-12-07 22:26:33 -08:00

17 lines
323 B
JavaScript

// for diffs shown in the PBDiffWindow
var setMessage = function(message) {
$("message").style.display = "";
$("message").innerHTML = message.escapeHTML();
$("diff").style.display = "none";
}
var showDiff = function(diff) {
highlightDiff(diff, $("diff"));
}
var showFile = function(txt) {
showDiff(txt);
return;
}