forked from hummypkg/webif
a014fec23d
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@725 2a923420-c742-0410-a762-8d5b09965624
39 lines
837 B
JavaScript
Executable File
39 lines
837 B
JavaScript
Executable File
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() {
|
|
window.location = '/cgi-bin/browse.jim?dir=' + $('#params').attr('dir');
|
|
});
|
|
|
|
$('#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);
|
|
});
|
|
});
|
|
|
|
});
|
|
|