| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /**
- * @license Highstock JS v8.0.0 (2019-12-10)
- *
- * Advanced Highstock tools
- *
- * (c) 2010-2019 Highsoft AS
- * Author: Torstein Honsi
- *
- * License: www.highcharts.com/license
- */
- 'use strict';
- (function (factory) {
- if (typeof module === 'object' && module.exports) {
- factory['default'] = factory;
- module.exports = factory;
- } else if (typeof define === 'function' && define.amd) {
- define('highcharts/modules/full-screen', ['highcharts'], function (Highcharts) {
- factory(Highcharts);
- factory.Highcharts = Highcharts;
- return factory;
- });
- } else {
- factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
- }
- }(function (Highcharts) {
- var _modules = Highcharts ? Highcharts._modules : {};
- function _registerModule(obj, path, args, fn) {
- if (!obj.hasOwnProperty(path)) {
- obj[path] = fn.apply(null, args);
- }
- }
- _registerModule(_modules, 'modules/full-screen.src.js', [_modules['parts/Globals.js']], function (H) {
- /* *
- *
- * (c) 2009-2019 Sebastian Bochann
- *
- * Full screen for Highcharts
- *
- * License: www.highcharts.com/license
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- /* eslint-disable no-invalid-this, valid-jsdoc */
- /**
- * The FullScreen class.
- * The module allows user to enable full screen mode in StockTools.
- * Based on default solutions in browsers.
- *
- * @private
- * @class
- * @name Highcharts.FullScreen
- *
- * @param {Highcharts.HTMLDOMElement} container
- * Chart container
- */
- var FullScreen = H.FullScreen = function (container) {
- this.init(container.parentNode);
- };
- FullScreen.prototype = {
- /**
- * Init function
- * @private
- * @param {Highcharts.HTMLDOMElement} container
- * Chart container's parent
- * @return {void}
- */
- init: function (container) {
- var promise;
- if (container.requestFullscreen) {
- promise = container.requestFullscreen();
- }
- else if (container.mozRequestFullScreen) {
- promise = container.mozRequestFullScreen();
- }
- else if (container.webkitRequestFullscreen) {
- promise = container.webkitRequestFullscreen();
- }
- else if (container.msRequestFullscreen) {
- promise = container.msRequestFullscreen();
- }
- if (promise) {
- promise['catch'](function () {
- alert('Full screen is not supported inside a frame'); // eslint-disable-line no-alert
- });
- }
- }
- };
- });
- _registerModule(_modules, 'masters/modules/full-screen.src.js', [], function () {
- });
- }));
|