nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-material / modules / closure / backdrop / backdrop.js
1 /*!
2  * Angular Material Design
3  * https://github.com/angular/material
4  * @license MIT
5  * v0.9.8
6  */
7 goog.provide('ng.material.components.backdrop');
8 goog.require('ng.material.core');
9 /*
10  * @ngdoc module
11  * @name material.components.backdrop
12  * @description Backdrop
13  */
14
15 /**
16  * @ngdoc directive
17  * @name mdBackdrop
18  * @module material.components.backdrop
19  *
20  * @restrict E
21  *
22  * @description
23  * `<md-backdrop>` is a backdrop element used by other components, such as dialog and bottom sheet.
24  * Apply class `opaque` to make the backdrop use the theme backdrop color.
25  *
26  */
27
28 angular.module('material.components.backdrop', [
29   'material.core'
30 ])
31   .directive('mdBackdrop', BackdropDirective);
32
33 function BackdropDirective($mdTheming) {
34   return $mdTheming;
35 }
36 BackdropDirective.$inject = ["$mdTheming"];
37
38 ng.material.components.backdrop = angular.module("material.components.backdrop");