Skip to content

Commit

Permalink
ErrorMsgs issue fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mi-kas committed Apr 29, 2013
1 parent 2719b0f commit 0d95968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@
var progress = function(numFiles) {
var me = $('#progressBar').show().find('div').addClass('ui-corner-right');
$('*').css('cursor', 'wait');
$('#errorMsg').empty();
$('#fileTree').hide();
var worker = new Worker('js/Progress.js');

worker.onmessage = function(e) {
Expand Down
3 changes: 1 addition & 2 deletions js/Tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ function Tree() {
dcmTree = {};
_html = [];

$('#errorMsg').empty();
$('#fileTree').empty().html(dcmRender(buildFromDcmList(list))).tree({
expanded: 'li:first'
}).hide();
});
};

var buildFromDcmList = function(files) {
Expand Down

0 comments on commit 0d95968

Please sign in to comment.