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) # 0.5.0 (2014-06-16)
* [new] add packages search bar * [new] add packages search bar
* [new] get buildlog preview by default instead of datestamp when click on a package * [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 ...@@ -71,7 +71,7 @@ config.web.preferences.debug = 0; // debug level - 0 means disabled
// DO NOT TOUCH these ones // DO NOT TOUCH these ones
config.version = '0.5.0'; config.version = '0.5.1';
config.events = {}; config.events = {};
config.events.error = 'error'; config.events.error = 'error';
......
...@@ -338,7 +338,7 @@ function Page_Distrubion(socket) { ...@@ -338,7 +338,7 @@ function Page_Distrubion(socket) {
append: function (new_content) { append: function (new_content) {
var file_content = $('#file pre'); var file_content = $('#file pre');
if (!current_file_in_preview) { if (!current_file_in_preview) {
file.append(new_content); file_content.append(new_content);
} else { } else {
// always show only config.file.num_lines lines in preview // always show only config.file.num_lines lines in preview
var content = file_content.html().replace(/\n$/, '').split('\n'); var content = file_content.html().replace(/\n$/, '').split('\n');
......
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
margin-left: 10px; margin-left: 10px;
} }
.breadcrumb {
margin-bottom:10px;
}
#error { #error {
display: none; 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