/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.7.1 */ goog.provide('ng.material.components.card'); goog.require('ng.material.core'); (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 `` directive is a container element used within `` 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 * * * *

Paracosm

*

* 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... *

*
*
* */ function mdCardDirective($mdTheming) { return { restrict: 'E', link: function($scope, $element, $attr) { $mdTheming($element); } }; } mdCardDirective.$inject = ["$mdTheming"]; })();