Merge, fixed issue #0001195
This commit is contained in:
commit
35f6e19248
@ -57,16 +57,17 @@ $(document).ready(function(){
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
$('a.histopdf').on('click', function(e){
|
||||
e.preventDefault();
|
||||
var url = $(this).attr('href');
|
||||
var objet = $(this);
|
||||
objet.html("Téléchargement du fichier...");
|
||||
objet.html('<a href="#" class="histopdf">Téléchargement du fichier...</a>');
|
||||
$.post( url, function (data, textStatus) {
|
||||
if( data=='' || data=='FALSE' || textStatus=='timeout' ) {
|
||||
data = 'La construction du fichier a échoué.<br/>';
|
||||
data = 'Le téléchargement du fichier a échoué.<br/>';
|
||||
}
|
||||
objet.html(data);
|
||||
objet.replaceWith(data);
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user