mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Fixed color wheel.
This commit is contained in:
parent
f1ad26dd64
commit
ae7800eada
1 changed files with 2 additions and 2 deletions
4
src/static/js/vendors/farbtastic.js
vendored
4
src/static/js/vendors/farbtastic.js
vendored
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue