* Creates instance of {FileDirective} object * @param {Object} options * @param {Object} options.uploader * @param {HTMLElement} options.element * @param {Object} options.events * @param {String} options.prop * @constructor
(options)
| 23 | * @constructor |
| 24 | */ |
| 25 | constructor(options) { |
| 26 | extend(this, options); |
| 27 | this.uploader._directives[this.prop].push(this); |
| 28 | this._saveLinks(); |
| 29 | this.bind(); |
| 30 | } |
| 31 | /** |
| 32 | * Binds events handles |
| 33 | */ |
nothing calls this directly
no test coverage detected