sxd 6 년 전
부모
커밋
7f823622a8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/js/yzQuestion.js

+ 2 - 2
src/js/yzQuestion.js

@@ -23,7 +23,7 @@ let yzQuestion = function (cfg) {
   this.contentDom = [];
 
   this.order = parseInt(cfg.order);
-  
+
   this.domId = ('lsiten_question_'+Math.random()).replace('.','_');
   // dom相关属性
   this.vdom = null;
@@ -48,7 +48,7 @@ yzQuestion.prototype._renderObjectiveDom = function () {
     ul.append('<li id="'+ this.domId +'_li" class="question-selection-li">'+ this._mapKey[i] +'</li>');
   }
   this.vdom.append(ul);
-}
+};
 
 
 /**