mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-29 08:34:30 +01:00
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
/*!
|
|
* 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 `<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"];
|
|
})();
|