Skip to content

Angular module, that contains a directive. The directive allows you to make draggable and resizeable any absolutely positioned div on your page. It looks exactly like moveable (draggable) and resizeable dialog window.

fiscal-cliff/fc-window-directive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

fc-window-directive

Angular module, that contains a directive. The directive allows you to make draggable and resizeable any absolutely positioned div on your page. It looks exactly like moveable (draggable) and resizeable dialog window. It's free of JQuery Draggable.

#Installation

bower install fc-window-directive

The actual module resides in fc-window-directive.js. Therefore you have to put the script tag bellow into your index.html

<script type="text/javascript" src="bower_components/fc-window-directive/fc-window-directive.js"></script>

Next, application module may looks like

var fcWindowDemo = angular.module('fcWindowDemo', ['fcWindow.directive']);

and finally, you may writedown few lines to your stylesheet:

div[fc-window] {
    position: absolute;
    top:100px;
    left:200px;
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
}

Demo

About

Angular module, that contains a directive. The directive allows you to make draggable and resizeable any absolutely positioned div on your page. It looks exactly like moveable (draggable) and resizeable dialog window.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published