Merge pull request #2012 from hartman/dragDelay
Match platform specifics for dragDelay of text
This commit is contained in:
commit
63f43da96a
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ var MouseHandler = function(editor) {
|
|||
|
||||
config.defineOptions(MouseHandler.prototype, "mouseHandler", {
|
||||
scrollSpeed: {initialValue: 2},
|
||||
dragDelay: {initialValue: 150},
|
||||
dragDelay: {initialValue: (useragent.isMac ? 150 : 0)},
|
||||
dragEnabled: {initialValue: true},
|
||||
focusTimout: {initialValue: 0},
|
||||
tooltipFollowsMouse: {initialValue: true}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue