diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index ed31730be..733e6a7ed 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -2401,6 +2401,7 @@ tfoot tr th { color:red; border:1px solid #c83f3f; background:#c6b4b4; + display:none; } #plupload_error table td { color:#902d2d; diff --git a/airtime_mvc/public/js/airtime/library/plupload.js b/airtime_mvc/public/js/airtime/library/plupload.js index 68ef61c62..ab222b6b6 100644 --- a/airtime_mvc/public/js/airtime/library/plupload.js +++ b/airtime_mvc/public/js/airtime/library/plupload.js @@ -24,6 +24,7 @@ $(document).ready(function() { .append('' + j.error.message + ''); $("#plupload_error").find("table").append(row); + $("#plupload_error table").css("display", "inline-table"); }else{ var tempFileName = j.tempfilepath; $.get('/Plupload/copyfile/format/json/name/'+encodeURIComponent(file.name)+'/tempname/'+encodeURIComponent(tempFileName), function(json){ @@ -34,6 +35,7 @@ $(document).ready(function() { .append('' + jr.error.message + ''); $("#plupload_error").find("table").append(row); + $("#plupload_error table").css("display", "inline-table"); } }); }