diff --git a/imagehosting/templates/imagehosting/all.html b/imagehosting/templates/imagehosting/all.html index cc507a8..c55b4cb 100644 --- a/imagehosting/templates/imagehosting/all.html +++ b/imagehosting/templates/imagehosting/all.html @@ -12,7 +12,13 @@ // $(function() {resizer(); }) // $(window).load(resizer();) // jQuery promises API - $('img').promise().done(function() {resizer(); console.log('done');}); + $('img').promise().progress(function(p){ + alert("Операция выполнена на " + p + " процентов"); +}). +done(function(){ + alert("Операция выполнена полностью!"); +}); + // .done(function() {resizer(); console.log('done');}); // $(window).on("load", function() {resizer(); }); $(window).resize(function() { resizer(); })