Design improvements with CHANGELOG

This commit is contained in:
Robert L
2018-01-16 15:06:17 -05:00
parent 3aee2be44a
commit 85f8eb162a
4 changed files with 57 additions and 15 deletions

View File

@ -81,6 +81,19 @@ $(document).ready(function() {
}
});
$(".client-term-container").resize(function() { width = $(this).width(); $("#client").css({'width' : '100%'}); $("#client-term-output").css({'margin-right' : '0px !important', 'padding-right' : '0 !important'}) })
$.ajax({
url: 'CHANGELOG.md',
type: 'get',
async: 'true',
success: function(text) {
var converter = new showdown.Converter(),
html = converter.makeHtml(text);
$("#changelog_container").html(html);
}
});
// Websocket client startup
startup();
});