Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 375 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 375 Bytes

ngDraggable

Drag an element without jQuery UI. This does NOT have droppable support (yet), and is a simple directive for easily moving an element around in the browser.

Usage

<div ng-draggable>
 Drag Me!
</div>

With a handler:

<div ng-draggable handle="#handle">
    I'm not the handle.
    <span id="#handle">But I am</span>
</div>