mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 13:00:10 -04:00
17 lines
373 B
JavaScript
17 lines
373 B
JavaScript
const Overlay = {
|
|
template: `
|
|
<div>
|
|
<div class="overlay"></div>
|
|
<div style="width: 100%; position:absolute; top:50px; z-index:2000">
|
|
<div class="well well-lg" style="width: 70%; margin: auto;" ng-transclude>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`,
|
|
transclude: true,
|
|
};
|
|
|
|
export default function init(ngModule) {
|
|
ngModule.component('overlay', Overlay);
|
|
}
|