mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
c19d2c8058
- added to menus for refs, commits, and files
- show a message when there are no changes
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
// for diffs shown in the PBDiffWindow
|
|
|
|
var setMessage = function(message) {
|
|
$("message").style.display = "";
|
|
$("message").innerHTML = message.escapeHTML();
|
|
$("diff").style.display = "none";
|
|
}
|
|
|