0.1.1 • Published 8 years ago

as-popup v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

as-popup

Simple AngularJS draggable, resizeable, minimizeable popup Based on JqueryUI and Font Awesome

Installation

  • If you use bower, just npm install as-ng-popup. If not, download files from the github repo
  • Reference dist/templates.min.js, dist/style.css and dist/index.js in your index.html file

Usage

index.html

<div id="container">
	<as-popup 
	        as-draggable
	        as-resizeable
	        title-text="Title"
	        title-icon="fa fa-bank"
	        as-width="250px"
	        as-height="150px"
	        color="red"
	        is-resizable="true"
	        is-minimizeable="true"
	        is-closed="false"
	        containment="#container">
		<h1>Popup content</h1>
	</as-popup>
</div>