Add note about portalButton dragging

This commit is contained in:
Alexandre Aubin 2019-02-22 23:22:09 +01:00
parent a19c198cd3
commit d521d87d23

View file

@ -263,6 +263,9 @@ function init_portal_button_and_overlay()
document.getElementsByTagName("head")[0].insertBefore(portalStyle, null); document.getElementsByTagName("head")[0].insertBefore(portalStyle, null);
// Bind portal button // Bind portal button
// FIXME : this somehow prevent the portalButton
// from being dragged correctly
// when mouse is moving too fast
window.addEvent(portalButton, 'click', function(e){ window.addEvent(portalButton, 'click', function(e){
// Prevent default click // Prevent default click
window.eventPreventDefault(e); window.eventPreventDefault(e);
@ -282,7 +285,6 @@ function init_portal_button_and_overlay()
Element.addClass(portalOverlay, 'ynh-fadeOut'); Element.addClass(portalOverlay, 'ynh-fadeOut');
} }
}); });
} }
// //