Commit 2bcdeca2 authored by Leo Iannacone's avatar Leo Iannacone

Merge remote-tracking branch 'github/master' into portable

parents 8eb3394a a506e2a6
# 0.5.1 (2015-06-17)
* [fix] recursive call on receive file new_content while view the whole file
* [fix] improved style for file view and datestamp
* [fix] documentation set porter command instead of rebuild
# 0.5.0 (2014-06-16)
* [new] add packages search bar
* [new] get buildlog preview by default instead of datestamp when click on a package
......
......@@ -71,7 +71,7 @@ config.web.preferences.debug = 0; // debug level - 0 means disabled
// DO NOT TOUCH these ones
config.version = '0.5.0';
config.version = '0.5.1';
config.events = {};
config.events.error = 'error';
......
......@@ -338,7 +338,7 @@ function Page_Distrubion(socket) {
append: function (new_content) {
var file_content = $('#file pre');
if (!current_file_in_preview) {
file.append(new_content);
file_content.append(new_content);
} else {
// always show only config.file.num_lines lines in preview
var content = file_content.html().replace(/\n$/, '').split('\n');
......
......@@ -18,6 +18,10 @@
margin-left: 10px;
}
.breadcrumb {
margin-bottom:10px;
}
#error {
display: none;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment