Sha256: b875b703f3aec56b06a6ee95841849f308cd43aeedf229f9a9e0f3fcc1fb7c14
Contents?: true
Size: 1.28 KB
Versions: 16
Compression:
Stored size: 1.28 KB
Contents
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.7.0-rc3 */ (function() { 'use strict'; /** * @ngdoc module * @name material.components.card * * @description * Card components. */ angular.module('material.components.card', [ 'material.core' ]) .directive('mdCard', mdCardDirective); /** * @ngdoc directive * @name mdCard * @module material.components.card * * @restrict E * * @description * The `<md-card>` directive is a container element used within `<md-content>` containers. * * Cards have constant width and variable heights; where the maximum height is limited to what can * fit within a single view on a platform, but it can temporarily expand as needed * * @usage * <hljs lang="html"> * <md-card> * <img src="img/washedout.png" class="md-card-image"> * <h2>Paracosm</h2> * <p> * The titles of Washed Out's breakthrough song and the first single from Paracosm share the * two most important words in Ernest Greene's musical language: feel it. It's a simple request, as well... * </p> * </md-card> * </hljs> * */ function mdCardDirective($mdTheming) { return { restrict: 'E', link: function($scope, $element, $attr) { $mdTheming($element); } }; } mdCardDirective.$inject = ["$mdTheming"]; })();
Version data entries
16 entries across 16 versions & 1 rubygems