Sha256: b6cfff9ab1477481dcd73f7ef9febe35b1be1f72cc13058bac9b10476c063e3a
Contents?: true
Size: 1.12 KB
Versions: 6
Compression:
Stored size: 1.12 KB
Contents
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.10.0 */ goog.provide('ng.material.components.divider'); goog.require('ng.material.core'); /** * @ngdoc module * @name material.components.divider * @description Divider module! */ angular.module('material.components.divider', [ 'material.core' ]) .directive('mdDivider', MdDividerDirective); /** * @ngdoc directive * @name mdDivider * @module material.components.divider * @restrict E * * @description * 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. * * @param {boolean=} md-inset Add this attribute to activate the inset divider style. * @usage * <hljs lang="html"> * <md-divider></md-divider> * * <md-divider md-inset></md-divider> * </hljs> * */ function MdDividerDirective($mdTheming) { return { restrict: 'E', link: $mdTheming }; } MdDividerDirective.$inject = ["$mdTheming"]; ng.material.components.divider = angular.module("material.components.divider");
Version data entries
6 entries across 6 versions & 1 rubygems