Ver código fonte

Merge branch 'master' of https://git.proginn.com/u167298/page

lsiten 6 anos atrás
pai
commit
9a33baf204
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      src/js/yzQuestion.js

+ 2 - 2
src/js/yzQuestion.js

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