You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
/**
|
|
* JavaScript library to deal with file uploads
|
|
* @author Yannick Warnier <yannick.warnier@dokeos.com>
|
|
*/
|
|
/**
|
|
* Upload class. Used to pack functions into one practical object.
|
|
* Call like this: var myUpload = new upload(5);
|
|
*/
|
|
function upload(latency){
|
|
/**
|
|
* Starts the timer
|
|
* Call like this:
|
|
* @param string Name of the DOM element we need to update
|
|
* @param string Loading image to display
|
|
* @return true
|
|
*/
|
|
function start(domid,img,text,formid){
|
|
__progress_bar_domid = domid;
|
|
__progress_bar_img = img;
|
|
__progress_bar_text = text;
|
|
__progress_bar_interval = setTimeout(__display_progress_bar,latency);
|
|
__upload_form_domid = formid;
|
|
}
|
|
/**
|
|
* Displays the progress bar in the given DOM element
|
|
*/
|
|
function __display_progress_bar(){
|
|
var my_html ='<span style="font-style:italic;">'+ __progress_bar_text+'</span><br/><img src="'+__progress_bar_img+'" alt="Progress bar"/>';
|
|
document.getElementById(__progress_bar_domid).innerHTML = my_html;
|
|
if(__upload_form_domid != ''){
|
|
document.getElementById(__upload_form_domid).style.display = 'none';
|
|
}
|
|
}
|
|
this.start = start;
|
|
var __progress_bar_domid = '';
|
|
var __progress_bar_img = '../img/progress_bar.gif';
|
|
var __progress_bar_text = 'Uploading... Please wait';
|
|
var __progress_bar_interval = 1;
|
|
var __upload_form_domid = '';
|
|
} |