mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
Fixed "Mouse right click don't works correctly" (Closes #466)
+ small fixes
This commit is contained in:
parent
e3064b10aa
commit
e96f297def
12 changed files with 76 additions and 25 deletions
|
|
@ -7,4 +7,24 @@ g=CKEDITOR.env.webkit&&this.document&&this.document.getWindow().$.frameElement
|
|||
g=null;
|
||||
try{g=CKEDITOR.env.webkit&&this.document&&this.document.getWindow().$.frameElement;}catch(e){}
|
||||
|
||||
---
|
||||
---
|
||||
|
||||
fix[2] .extend
|
||||
|
||||
d.collapse(true);c.removeAllRanges();c.addRange(d);c.extend(b[1].node,b[1].offset)
|
||||
|
||||
->
|
||||
|
||||
d.collapse(true);c.removeAllRanges();c.addRange(d);try{c.extend(b[1].node,b[1].offset)}catch(e){}
|
||||
|
||||
---
|
||||
disable context menu
|
||||
|
||||
disableContextMenu:function(){this.on("contextmenu",
|
||||
-->
|
||||
disableContextMenu:function(){return false;this.on("contextmenu",
|
||||
|
||||
|
||||
proto:{addTarget:function(a,e){a.on("contextmenu",function(a){
|
||||
-->
|
||||
proto:{addTarget:function(a,e){a.on("contextmenu",function(a){return false;
|
||||
Loading…
Add table
Add a link
Reference in a new issue