nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-material / modules / closure / divider / divider.js
1 /*!
2  * Angular Material Design
3  * https://github.com/angular/material
4  * @license MIT
5  * v0.9.8
6  */
7 goog.provide('ng.material.components.divider');
8 goog.require('ng.material.core');
9 /**
10  * @ngdoc module
11  * @name material.components.divider
12  * @description Divider module!
13  */
14 angular.module('material.components.divider', [
15   'material.core'
16 ])
17   .directive('mdDivider', MdDividerDirective);
18
19 /**
20  * @ngdoc directive
21  * @name mdDivider
22  * @module material.components.divider
23  * @restrict E
24  *
25  * @description
26  * 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.
27  *
28  * @param {boolean=} md-inset Add this attribute to activate the inset divider style.
29  * @usage
30  * <hljs lang="html">
31  * <md-divider></md-divider>
32  *
33  * <md-divider md-inset></md-divider>
34  * </hljs>
35  *
36  */
37 function MdDividerDirective($mdTheming) {
38   return {
39     restrict: 'E',
40     link: $mdTheming
41   };
42 }
43 MdDividerDirective.$inject = ["$mdTheming"];
44
45 ng.material.components.divider = angular.module("material.components.divider");