summaryrefslogtreecommitdiff
path: root/views/batch.haml
diff options
context:
space:
mode:
Diffstat (limited to 'views/batch.haml')
-rw-r--r--views/batch.haml7
1 files changed, 1 insertions, 6 deletions
diff --git a/views/batch.haml b/views/batch.haml
index 7f6ddb7..e532e9d 100644
--- a/views/batch.haml
+++ b/views/batch.haml
@@ -29,16 +29,11 @@
var aClient = new HttpClient();
aClient.get(uri, function(res) {
var response = JSON.parse(res);
- if (model_id == "Cramer"){
- $("img.circle").show();
- }else{
- progress(response['percent'],id);
- }
+ progress(response['percent'],id);
if (response['percent'] == 100){
window.clearInterval(markers[id]);
$("a#downbutton_"+id).removeClass("disabled");
$("a#detailsbutton_"+id).removeClass("disabled");
- $("img.circle").hide();
};
});
};