소스 검색

Adding comments to crfHTML

Andrej 3 일 전
부모
커밋
6b85955a27
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      web/crf/crfHTML.js

+ 1 - 0
web/crf/crfHTML.js

@@ -97,6 +97,7 @@ function(el,text){
 
 crfHTML.createDiv=
 function(divId=null,id=null,el=null){
+//create <div> and append it to element with id (if not null) or to existing element el (if not null)
    let div=document.createElement('div');
    if (divId) div.id=divId;
    this.append(div,id,el);