This commit is contained in:
2020-03-04 17:26:04 +06:00
parent 93e452fbdf
commit 44f3b72b71
2 changed files with 133 additions and 114 deletions

View File

@ -763,7 +763,7 @@ class EdtRec
td.setAttribute("align","right");
button = document.createElement('input');
button.setAttribute("type","button");
button.style.cssText="margin:0px;margin-right:1px;padding:0px;";
button.style.cssText="margin:0px;margin-right:1px;";
button.setAttribute("value",_('Apply'));
button.onclick=function(thiz){
return function(){
@ -774,7 +774,7 @@ class EdtRec
button = document.createElement('input'); //Button cancel
button.setAttribute("type","button");
button.style.cssText="margin:0px;padding:0px;";
button.style.cssText="margin:0px;";
button.setAttribute("value",_('Cancel'));
//button.onclick=function f_exit(this) { alert(this.win.div); }
button.onclick=function(thiz){ return function(){thiz.win.Close();};}(this);