nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-material / modules / js / divider / divider.js
1 /*!
2  * Angular Material Design
3  * https://github.com/angular/material
4  * @license MIT
5  * v0.9.8
6  */
7 (function( window, angular, undefined ){
8 "use strict";
9
10 /**
11  * @ngdoc module
12  * @name material.components.divider
13  * @description Divider module!
14  */
15 angular.module('material.components.divider', [
16   'material.core'
17 ])
18   .directive('mdDivider', MdDividerDirective);
19
20 /**
21  * @ngdoc directive
22  * @name mdDivider
23  * @module material.components.divider
24  * @restrict E
25  *
26  * @description
27  * Dividers group and separate content within lists and page layouts using strong visual and spatial distinctions. This divider is a thin rule, lightweight enough to not distract the user from content.
28  *
29  * @param {boolean=} md-inset Add this attribute to activate the inset divider style.
30  * @usage
31  * <hljs lang="html">
32  * <md-divider></md-divider>
33  *
34  * <md-divider md-inset></md-divider>
35  * </hljs>
36  *
37  */
38 function MdDividerDirective($mdTheming) {
39   return {
40     restrict: 'E',
41     link: $mdTheming
42   };
43 }
44 MdDividerDirective.$inject = ["$mdTheming"];
45
46 })(window, window.angular);