seimin 0e3bf6bf50 初始化 3 years ago
..
dist 0e3bf6bf50 初始化 3 years ago
src 0e3bf6bf50 初始化 3 years ago
.bower.json 0e3bf6bf50 初始化 3 years ago
LICENSE 0e3bf6bf50 初始化 3 years ago
README.md 0e3bf6bf50 初始化 3 years ago
bower.json 0e3bf6bf50 初始化 3 years ago
demo.html 0e3bf6bf50 初始化 3 years ago

README.md

angular-aside bower version

Off canvas side menu to use with ui-bootstrap. Extends ui-bootstrap's $modal provider.

###Live Demo

##Install

  • Install with bower: bash $ bower install angular-aside
  • Include css/js in html.

##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)