sxd 6 years ago
parent
commit
7f823622a8
1 changed files with 2 additions and 2 deletions
  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);
-}
+};
 
 
 /**