mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
19 lines
392 B
JavaScript
19 lines
392 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);
|
|
}
|
|
|
|
init.init = true;
|