mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-26 15:29:31 +00:00
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
(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);
|
|
}
|
|
};
|
|
}
|
|
})();
|