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