提交 1f4dcb11 编写于 作者: D devil_gong

上传文件组件优化

上级 a166d1fd
......@@ -104,7 +104,7 @@
/* 初始化搜索点击事件 */
function initAlign(){
domUtils.on($G("search-submit"), 'click', function(e){
onlineImage = new OnlineImage('imageList');
onlineImage = onlineImage || new OnlineImage('imageList');
onlineImage.reset();
});
}
......
......@@ -138,8 +138,9 @@
* 在线视频
*/
function initOnline(){
onlineFile = new OnlineFile('videoList');
onlineFile = onlineFile || new OnlineFile('videoList');
onlineFile.reset();
}
function OnlineFile(target) {
this.container = utils.isString(target) ? document.getElementById(target) : target;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册