1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-21 21:57:27 +00:00

Version and branch shown when not on master

This commit is contained in:
Mark McDowall 2013-08-10 16:46:27 -07:00
parent a3c36ebc7c
commit a6e356c0cf

View file

@ -12,7 +12,7 @@ var footerText = window.ServerStatus.version;
$(document).ready(function () {
if (window.ServerStatus.branch != 'master') {
footerText = '</br>' + window.ServerStatus.branch;
footerText += '</br>' + window.ServerStatus.branch;
}
$('#footer-region .version').html(footerText);
});