Skip to content

Commit

Permalink
fix: Drag to other day in weekly calendar is not available on firefox (
Browse files Browse the repository at this point in the history
…close #158)
  • Loading branch information
Dongsik Yoo committed Jul 16, 2018
1 parent 54da811 commit 2e72303
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/js/handler/drag.js
Expand Up @@ -137,6 +137,12 @@ Drag.prototype._onMouseDown = function(mouseDownEvent) {
this._dragStartEventData = this._getEventData(mouseDownEvent);

this._toggleDragEvent(true);

// EventTarget.target is not changed in mousemove event even if mouse is over the other element.
// It's different with other browsers(IE, Chrome, Safari)
if (util.browser.firefox) {
domevent.preventDefault(mouseDownEvent);
}
};

/**
Expand Down

0 comments on commit 2e72303

Please sign in to comment.