Last change
on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Line | |
---|
1 | {"version":3,"file":"fullscreen-overlay-container.d.ts","sources":["fullscreen-overlay-container.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { OnDestroy } from '@angular/core';\nimport { OverlayContainer } from './overlay-container';\nimport { Platform } from '@angular/cdk/platform';\n/**\n * Alternative to OverlayContainer that supports correct displaying of overlay elements in\n * Fullscreen mode\n * https://developer.mozilla.org/en-US/docs/Web/API/Element/requestFullScreen\n *\n * Should be provided in the root component.\n */\nexport declare class FullscreenOverlayContainer extends OverlayContainer implements OnDestroy {\n private _fullScreenEventName;\n private _fullScreenListener;\n constructor(_document: any, platform: Platform);\n ngOnDestroy(): void;\n protected _createContainer(): void;\n private _adjustParentForFullscreenChange;\n private _addFullscreenChangeListener;\n private _getEventName;\n /**\n * When the page is put into fullscreen mode, a specific element is specified.\n * Only that element and its children are visible when in fullscreen mode.\n */\n getFullscreenElement(): Element;\n}\n"]} |
---|
Note:
See
TracBrowser
for help on using the repository browser.