Skip to content

ajaysinghj8/angular-draggable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular-Draggable

A angular directive provide html block to move on html plain.

Usages

import { NgDraggableModule } from 'angular-draggable'; 
@NgModule({                                   
    imports: [
        ....,                                
        NgDraggableModule                       
    ],
    declarations: [YourAppComponent ],
    exports: [YourAppComponent],
    bootstrap: [YourAppComponent],
})
.....
<div draggable>
    content
 </div>    
<div draggable="true">
    content
</div>    
<div draggable="false">
    content
</div>    

Example

#demo