|
1 년 전 | |
---|---|---|
.. | ||
dist | 1 년 전 | |
src | 1 년 전 | |
.bower.json | 1 년 전 | |
LICENSE | 1 년 전 | |
README.md | 1 년 전 | |
bower.json | 1 년 전 | |
demo.html | 1 년 전 |
Off canvas side menu to use with ui-bootstrap. Extends ui-bootstrap's $modal provider.
###Live Demo
##Install
bash
$ bower install angular-aside
##Usage
angular.module('myApp', ['ui.bootstrap', 'ngAside']);
angular.module('myApp')
.controller('MyController', function($scope, $aside) {
var asideInstance = $aside.open({
templateUrl: 'aside.html',
controller: 'AsideCtrl',
placement: 'left',
size: 'lg'
});
});
Supports all configuration that $modal
has. Can be used with both template
and templateUrl
. For more info hit Modal section on angular-ui bootstrap documentation.
##Additional Config
placement
- Aside placement can be 'left'
, 'right'
, 'top'
, or 'bottom'
.##Credits
##Author
İsmail Demirbilek (@dbtek)