mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-30 08:34:51 +01:00
41 lines
835 B
JavaScript
41 lines
835 B
JavaScript
|
/*!
|
||
|
* Angular Material Design
|
||
|
* https://github.com/angular/material
|
||
|
* @license MIT
|
||
|
* v0.7.1
|
||
|
*/
|
||
|
goog.provide('ng.material.components.backdrop');
|
||
|
goog.require('ng.material.core');
|
||
|
(function() {
|
||
|
'use strict';
|
||
|
|
||
|
/*
|
||
|
* @ngdoc module
|
||
|
* @name material.components.backdrop
|
||
|
* @description Backdrop
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @ngdoc directive
|
||
|
* @name mdBackdrop
|
||
|
* @module material.components.backdrop
|
||
|
*
|
||
|
* @restrict E
|
||
|
*
|
||
|
* @description
|
||
|
* `<md-backdrop>` is a backdrop element used by other coponents, such as dialog and bottom sheet.
|
||
|
* Apply class `opaque` to make the backdrop use the theme backdrop color.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
angular.module('material.components.backdrop', [
|
||
|
'material.core'
|
||
|
])
|
||
|
.directive('mdBackdrop', BackdropDirective);
|
||
|
|
||
|
function BackdropDirective($mdTheming) {
|
||
|
return $mdTheming;
|
||
|
}
|
||
|
BackdropDirective.$inject = ["$mdTheming"];
|
||
|
})();
|