mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 17:05:17 +00:00
fixed bug with execution ondbl click from enter
This commit is contained in:
parent
e6323207bb
commit
aac9e20152
1 changed files with 2 additions and 1 deletions
|
|
@ -650,7 +650,8 @@ CloudClient._setCurrent=(function(){
|
|||
}
|
||||
/* если мы попали сюда с энтера*/
|
||||
if(pFromEnter===true){
|
||||
this.ondblclick(this);
|
||||
if(typeof this.ondblclick === 'function')
|
||||
this.ondblclick(this);
|
||||
}/* если мы попали сюда от клика мышки */
|
||||
else{pFromEnter.returnValue=false;}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue