ng2draggable
ng2draggable copied to clipboard
draggable directive for angular 2
Hi, I am using ng2draggable in my project but scroll bar is not working when try to drag element when i have more number of items. Please check and let...
Hello. I suggest to use the following code: ``` @HostListener('mousedown', ['$event']) onMouseDown(event:MouseEvent) { if(event.button === 2) return; // prevents right click drag, remove his if you don't want it //...
I'm using this plugin for a project and it's great. Only issue i'm having right now though is that the window can be dragged off to the side of it's...
I am implementing canvas in angular 2 and i have to make canvas elements draggable how to do that using ng2draggable ?