Lines 47-53
Link Here
|
47 |
<div class="import_errors dialog alert" style="display: none;"></div> |
47 |
<div class="import_errors dialog alert" style="display: none;"></div> |
48 |
</div> |
48 |
</div> |
49 |
|
49 |
|
50 |
<div id="csv_error" class="alert" style="visibility: hidden;">Something went wrong, check your CSV file.</div> |
|
|
51 |
<div id="instructions"> |
50 |
<div id="instructions"> |
52 |
<fieldset id="file_uploader_help" class="rows"> |
51 |
<fieldset id="file_uploader_help" class="rows"> |
53 |
<legend>Instructions</legend> |
52 |
<legend>Instructions</legend> |
Lines 240-246
Link Here
|
240 |
if ( arrData[ arrData.length - 1 ] ) { |
239 |
if ( arrData[ arrData.length - 1 ] ) { |
241 |
arrData[ arrData.length - 1 ].push( strMatchedValue ); |
240 |
arrData[ arrData.length - 1 ].push( strMatchedValue ); |
242 |
} else { |
241 |
} else { |
243 |
$('#csv_error').css( 'visibility' , 'visible' ); |
242 |
$("#messages .import_error").text($("Something went wrong, check your CSV file.")); |
244 |
} |
243 |
} |
245 |
} |
244 |
} |
246 |
|
245 |
|
247 |
- |
|
|