UNPKG

dynamicsmobile

Version:

Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com

21 lines 812 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WinPlatformBridge = void 0; const dms_platform_bridge_1 = require("../platform/dms-platform-bridge"); class WinPlatformBridge extends dms_platform_bridge_1.PlatformBridge { constructor(dms) { super(dms); this.addIgnoredCommand('saveAllSettings'); } execNextQueue() { if (!this.isCmdPending && this.cmdQueue.length > 0) { this.isCmdPending = true; var cmd = this.cmdQueue[0]; var url = this.composeCommandUrl(cmd.id, cmd.command, cmd.params); //(window.external as any).notify(url); window.chrome.webview.postMessage(url); } } } exports.WinPlatformBridge = WinPlatformBridge; //# sourceMappingURL=dms-platform-win.js.map