123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
-
- var FullScreenAPI = function () {
- function FullScreenAPI() {
- _classCallCheck(this, FullScreenAPI);
- }
-
- FullScreenAPI.prototype.enter = function enter() {};
-
- FullScreenAPI.prototype.exit = function exit() {};
-
- FullScreenAPI.prototype.isFullScreen = function isFullScreen() {};
- return FullScreenAPI;
- }();
- return FullScreenAPI;
- });
|