2 Commits 75fd6a3cf1 ... 303b6a34e6

Auteur SHA1 Bericht Datum
  sxd 303b6a34e6 Merge branch 'master' of https://git.proginn.com/u167298/page 6 jaren geleden
  sxd 7f823622a8 'a' 6 jaren geleden
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  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);
-}
+};
 
 
 /**