(editor, menu, opt)
| 1973 | |
| 1974 | // 定义构造函数 |
| 1975 | var Modal = function (editor, menu, opt) { |
| 1976 | this.editor = editor; |
| 1977 | this.menu = menu; |
| 1978 | this.$content = opt.$content; |
| 1979 | |
| 1980 | this.init(); |
| 1981 | }; |
| 1982 | |
| 1983 | Modal.fn = Modal.prototype; |
| 1984 |
nothing calls this directly
no outgoing calls
no test coverage detected