2 * Angular Material Design
3 * https://github.com/angular/material
7 (function( window, angular, undefined ){
12 * @name material.components.divider
13 * @description Divider module!
15 MdDividerDirective['$inject'] = ["$mdTheming"];
16 angular.module('material.components.divider', [
19 .directive('mdDivider', MdDividerDirective);
24 * @module material.components.divider
28 * 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.
30 * @param {boolean=} md-inset Add this attribute to activate the inset divider style.
33 * <md-divider></md-divider>
35 * <md-divider md-inset></md-divider>
39 function MdDividerDirective($mdTheming) {
46 })(window, window.angular);