Lines Matching refs:event

44     * Stored reference to the click event binding of the `Select Files`
83 * @event fileselect
84 * @param event {Event} The event object for the `fileselect` with the
97 * @event uploadstart
98 * @param event {Event} The event object for the `uploadstart`.
105 * @event fileuploadstart
106 * @param event {Event} The event object for the `fileuploadstart` with the
110 * <dd>A reference to the Y.File that dispatched the event.</dd>
112 * <dd>The original event dispatched by Y.File.</dd>
120 * @event uploadprogress
121 * @param event {Event} The event object for the `uploadprogress` with the
125 * <dd>The pointer to the instance of `Y.File` that dispatched the event.</dd>
133 * <dd>The original event dispatched by the HTML5 uploader</dd>
141 * @event totaluploadprogress
142 * @param event {Event} The event object for the `totaluploadprogress` with the
158 * @event uploadcomplete
159 * @param event {Event} The event object for the `uploadcomplete` with the
165 * <dd>The original event fired by the SWF Uploader</dd>
175 * @event alluploadscomplete
176 * @param event {Event} The event object for the `alluploadscomplete`.
183 * @event uploaderror
184 * @param event {Event} The event object for the `uploaderror` with the
188 * <dd>The original error event fired by the HTML5 Uploader. </dd>
202 * @event dragenter
203 * @param event {Event} The event object for the `dragenter`.
210 * @event dragover
211 * @param event {Event} The event object for the `dragover`.
218 * @event dragleave
219 * @param event {Event} The event object for the `dragleave`.
226 * @event drop
227 * @param event {Event} The event object for the `drop`.
284 _bindDropArea : function (event) {
285 var ev = event || {prevVal: null};
322 _ddEventHandler : function (event) {
324 event.stopPropagation();
325 event.preventDefault();
327 switch (event.type) {
339 var newfiles = event._event.dataTransfer.files,
419 * @param ev {Event} The file selection event received from the uploader.
444 * @param event The event dispatched during the upload process.
447 _uploadEventHandler : function (event) {
449 switch (event.type) {
451 this.fire("fileuploadstart", event);
454 this.fire("uploadprogress", event);
457 this.fire("totaluploadprogress", event);
460 this.fire("uploadcomplete", event);
464 this.fire("alluploadscomplete", event);
467 this.fire("uploaderror", event);
808 }, '@VERSION@' ,{requires:['widget', 'substitute', 'node-event-simulate', 'file-html5', 'uploader-queue']});