(opt)
| 6878 | |
| 6879 | // 构造函数 |
| 6880 | var UploadFile = function (opt) { |
| 6881 | this.editor = opt.editor; |
| 6882 | this.uploadUrl = opt.uploadUrl; |
| 6883 | this.timeout = opt.timeout; |
| 6884 | this.fileAccept = opt.fileAccept; |
| 6885 | this.multiple = true; |
| 6886 | }; |
| 6887 | |
| 6888 | UploadFile.fn = UploadFile.prototype; |
| 6889 |
nothing calls this directly
no outgoing calls
no test coverage detected