1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/vendor/assets/components/angular-aside
2016-07-18 16:31:14 +02:00
..
dist add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
src add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
.bower.json add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
bower.json add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
demo.html add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
index.js add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
LICENSE add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00
README.md add an aside for filter caldendar in mobile 2016-07-18 16:31:14 +02:00

angular-aside bower version npm version

Off canvas side menu for use with ui-bootstrap 0.14+. Extends ui-bootstrap's $uibModal provider.

💁 Please use v1.2.x for ui-bootstrap versions 0.13 and below.

###Live Demo

##Install

Bower:

 $ bower install angular-aside

Then, include css/js in html.

NPM

 $ npm 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 $uibModal 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)