Skip to content

Commit

Permalink
Fixed color wheel.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Aug 17, 2023
1 parent f1ad26d commit ae7800e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/static/js/vendors/farbtastic.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,8 @@ $._farbtastic = function (container, options) {
*/
fb.mouseup = function () {
// Uncapture mouse
$(document).off('mousemove').on('mousemove',fb.mousemove);
$(document).off('mouseup').on('mouseup', fb.mouseup);
$(document).off('mousemove', fb.mousemove);
$(document).off('mouseup', fb.mouseup);
$._farbtastic.dragging = false;
}

Expand Down

0 comments on commit ae7800e

Please sign in to comment.