GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 134.29.175.74  /  Your IP : 216.73.216.160
Web Server : nginx/1.10.2
System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586
User : Administrator ( 0)
PHP Version : 7.1.0
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Windows/SystemApps/Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /Windows/SystemApps/Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy/js/appViewManager.js
//
// Copyright (C) Microsoft. All rights reserved.
//
/// <disable>JS2085.EnableStrictMode</disable>
"use strict";
var CloudExperienceHost;
(function (CloudExperienceHost) {
    class AppViewManager {
        constructor() {
            this.observers = {};
        }
        showView() {
            return this.notifyObserver(CloudExperienceHost.FrameViewModelUpdateType.View);
        }
        showProgress() {
            return this.notifyObserver(CloudExperienceHost.FrameViewModelUpdateType.Progress);
        }
        showGraphicAnimation(fileName) {
            return this.notifyObserver(CloudExperienceHost.FrameViewModelUpdateType.GraphicAnimation, fileName);
        }
        createWebView() {
            if (!this.webViewCtrl) {
                this.webViewCtrl = this.frameViewModel.createWebView();
            }
            else {
                this.frameViewModel.setWebView(this.webViewCtrl);
            }
            return this.webViewCtrl;
        }
        getView() {
            return this.frameViewModel.getView();
        }
        cleanView() {
            WinJS.Utilities.empty(this.getView());
        }
        loadCss() {
            let cssList = CloudExperienceHost.GetCssList(".", CloudExperienceHost.getContext()); // default.html is at root
            for (let i = 0; i < cssList.length; i++) {
                CloudExperienceHost.AddCssToHead(document.head, cssList[i]);
            }
        }
        getBoundingClientRect() {
            return this.frameViewModel.getContentViewBoundingRect();
        }
        getChromeFooterOffset() {
            return this.frameViewModel.getChromeFooterOffset();
        }
        dimChrome() {
            return this.notifyObserver(CloudExperienceHost.FrameViewModelUpdateType.Dimmed);
        }
        undimChrome() {
            return this.notifyObserver(CloudExperienceHost.FrameViewModelUpdateType.Undimmed);
        }
        languageOverridden(overrideLanguage) {
            return this.notifyObserversOfUpdateType(CloudExperienceHost.FrameViewModelUpdateType.Language, overrideLanguage);
        }
        resetFooterFocus() {
            return this.notifyObserversOfUpdateType(CloudExperienceHost.FrameViewModelUpdateType.ResetFooterFocus);
        }
        setShowInputSwitchButton() {
            return this.notifyObserversOfUpdateType(CloudExperienceHost.FrameViewModelUpdateType.InputSwitchButton);
        }
        unSubscrible() {
            this.frameViewModel = null;
        }
        unsubscribeForUpdateType(observer, updateType) {
            if (!this.observers[updateType]) {
                return false;
            }
            let obsIndex = this.observers[updateType].indexOf(observer);
            if (obsIndex == -1) {
                return false;
            }
            else {
                // Observer exists in the Array remove it
                this.observers[updateType].splice(obsIndex, 1);
                return true;
            }
        }
        subscribe(frameViewModel) {
            if (!this.frameViewModel) {
                this.frameViewModel = frameViewModel;
                return true;
            }
            else if (this.frameViewModel == frameViewModel) {
                CloudExperienceHost.Telemetry.AppTelemetry.getInstance().logEvent("Subscribing frame is already subscribed", JSON.stringify(this.frameViewModel));
                return false;
            }
            else {
                this.frameViewModel = frameViewModel;
                CloudExperienceHost.Telemetry.AppTelemetry.getInstance().logEvent("Subscribe a different frame", JSON.stringify(this.frameViewModel), JSON.stringify(frameViewModel));
                return true;
            }
        }
        subscribeForUpdateType(observer, updateType) {
            if (!this.observers[updateType]) {
                this.observers[updateType] = [];
                this.observers[updateType].push(observer);
                return true;
            }
            else if (this.observers[updateType].indexOf(observer) == -1) {
                this.observers[updateType].push(observer);
                return true;
            }
            else {
                // Observer already exists in the Array
                return false;
            }
        }
        notifyObserver(updateType, updateTag) {
            return new WinJS.Promise((completeDispatch, errorDispatch) => {
                this.frameViewModel.update(updateType, completeDispatch, errorDispatch, updateTag);
            });
        }
        notifyObserversOfUpdateType(updateType, updateTag) {
            let updatePromise = new WinJS.Promise((c) => c());
            if (this.observers && this.observers[updateType]) {
                for (let observer of this.observers[updateType]) {
                    updatePromise = WinJS.Promise.join(updatePromise, new WinJS.Promise((completeDispatch, errorDispatch) => {
                        observer.update(updateType, completeDispatch, errorDispatch, updateTag);
                    }));
                }
            }
            return updatePromise;
        }
    }
    CloudExperienceHost.AppViewManager = AppViewManager;
})(CloudExperienceHost || (CloudExperienceHost = {}));
if ((typeof define === "function") && define.amd) {
    define(function () {
        return new CloudExperienceHost.AppViewManager();
    });
}
//# sourceMappingURL=appViewManager.js.map

Anon7 - 2022
AnonSec Team