2012-02-07 00:17:33 +00:00
|
|
|
var handle = 0;
|
|
|
|
|
|
|
|
function update()
|
|
|
|
{
|
|
|
|
var perc = $('#params').attr('perc');
|
|
|
|
var file = $('#params').attr('file');
|
|
|
|
|
|
|
|
$.get('progress.jim' + '?perc=' + perc + '&file=' + file,
|
|
|
|
function(data) {
|
|
|
|
if (handle)
|
|
|
|
$('#progressbar').reportprogress(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
$('#progressbar').reportprogress(0);
|
|
|
|
|
|
|
|
$('#back').button().click(function() {
|
2013-02-25 22:31:54 +00:00
|
|
|
window.location = '../index.jim?dir=' + $('#params').attr('dir');
|
2012-02-07 00:17:33 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#cropit').button().click(function() {
|
|
|
|
$('#cropdiv').hide('slow');
|
|
|
|
$('#progressdiv').show('slow');
|
|
|
|
handle = setInterval("update()", 1000);
|
|
|
|
$('#output').text('Please do not interrupt...')
|
|
|
|
.load('execute.jim?file=' + $('#params').attr('file'),
|
|
|
|
function() {
|
|
|
|
clearInterval(handle);
|
|
|
|
handle = 0;
|
|
|
|
$('#back').show();
|
|
|
|
$('#progressbar').reportprogress(100);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|