Skip to content

Commit

Permalink
Fix log init #2
Browse files Browse the repository at this point in the history
  • Loading branch information
mcartmel committed May 12, 2020
1 parent 583afec commit 822681d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodel-webui-js/src/nodel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2442,7 +2442,7 @@ var process_log = function(log, idx){
if(!log.ani) {
$(ele).find('.log_'+log.type+'_'+alias+ ' .logicon').stop(true,true).css({'opacity': 1}).animate({'opacity': 0.2}, 1000);
}
if((data.length == src.total) && src.init == true) {
if((data.length >= src.total) && src.init == true) {
if(src.total > 100) $.observable(src).setProperty('hold', true);
$.observable(src).setProperty('init', false);
}
Expand Down

0 comments on commit 822681d

Please sign in to comment.