Removes console.log call from progress
parent
50e26e1a3e
commit
25e85b3a80
|
@ -6,13 +6,9 @@
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
success: function(data) {
|
success: function(data) {
|
||||||
var progress = data.progress;
|
var progress = data.progress;
|
||||||
console.log(progress);
|
|
||||||
|
|
||||||
var bar = $('#progress_bar').find('.ui-progress');
|
var bar = $('#progress_bar').find('.ui-progress');
|
||||||
bar.animate({'width': progress.toString() + '%'});
|
bar.animate({'width': progress.toString() + '%'});
|
||||||
},
|
|
||||||
error: function(e) {
|
|
||||||
console.log(e);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue