Lines Matching refs:upload

4  * Multiple file upload component with progress-bar, drag-and-drop.
187 * `qq.obj2url({a:'b',c:'d'},'http://any.url/upload?otherParam=value');`
191 * `http://any.url/upload?otherParam=value&a=b&c=d`
251 * Creates upload button, validates upload, but doesn't create file list or dd.
257 action: '/server/upload',
278 onLeave: "The files are being uploaded, if you leave now the upload will be cancelled."
399 this._handler.upload(id, this._options.params);
476 * Class that creates upload widget with drag-and-drop and file list
486 // if set, will be used instead of qq-upload-list in template
490 '<div class="qq-upload-drop-area"><span>Drop files here to upload</span></div>' +
491 '<div class="qq-upload-button">Upload a file</div>' +
492 '<ul class="qq-upload-list"></ul>' +
497 '<span class="qq-upload-file"></span>' +
498 '<span class="qq-upload-spinner"></span>' +
499 '<span class="qq-upload-size"></span>' +
500 '<a class="qq-upload-cancel" href="#">Cancel</a>' +
501 '<span class="qq-upload-failed-text">Failed</span>' +
506 button: 'qq-upload-button',
507 drop: 'qq-upload-drop-area',
508 dropActive: 'qq-upload-drop-area-active',
509 list: 'qq-upload-list',
511 file: 'qq-upload-file',
512 spinner: 'qq-upload-spinner',
513 size: 'qq-upload-size',
514 cancel: 'qq-upload-cancel',
516 // added to list item when upload completes
518 success: 'qq-upload-success',
519 fail: 'qq-upload-fail'
763 hoverClass: 'qq-upload-button-hover',
764 focusClass: 'qq-upload-button-focus'
860 action: '/upload.php',
885 upload: function(id, params){
898 * Cancels file upload by id
929 * Actual upload method
937 * Removes element from queue, starts upload of next
967 var id = 'qq-upload-handler-iframe' + qq.getUniqueId();
1047 // when we upload file with iframe
1137 typeof (new XMLHttpRequest()).upload != "undefined" );
1146 * Returns id to use with upload, cancel
1184 xhr.upload.onprogress = function(e){