jquery fileupload.js this._on не является ошибкой функции - PullRequest
0 голосов
/ 06 декабря 2018
_initEventHandlers: function () {
        if (this._isXHRUpload(this.options)) {
            this._on(this.options.dropZone, {
                dragover: this._onDragOver,
                drop: this._onDrop,
                // event.preventDefault() on dragenter is required for IE10+:
                dragenter: this._onDragEnter,
                // dragleave is not required, but added for completeness:
                dragleave: this._onDragLeave
            });
            this._on(this.options.pasteZone, {
                paste: this._onPaste
            });
        }
        if ($.support.fileInput) {
            this._on(this.options.fileInput, {
                change: this._onChange
            });
        }

этот код внутри Jquery.fileupload.js, но выдает ошибку:

this._on () не является функцией

что я могу сделать?

...