mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2025-12-08 19:05:54 +00:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
function loadDiff(diff) {
|
|
var diffHtml = Diff2Html.getPrettyHtml(diff, {
|
|
inputFormat: 'diff',
|
|
showFiles: true,
|
|
matching: 'none',
|
|
outputFormat: 'line-by-line'
|
|
});
|
|
console.log(diffHtml);
|
|
document.getElementById("diff").innerHTML = diffHtml;
|
|
} |