{"version":3,"sources":["./src/environments/environment.ts","./src/app/app.component.ts","./src/app/app.component.html","./src/app/app.module.ts","./src/main.ts","./$_lazy_route_resource lazy namespace object"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,gFAAgF;AAChF,0EAA0E;AAC1E,gEAAgE;AAEzD,MAAM,WAAW,GAAG;IACzB,UAAU,EAAE,KAAK;CAClB,CAAC;AAEF;;;;;;GAMG;AACH,mEAAmE;;;;;;;;;;;;;;;;;ACR5D,MAAM,YAAY;IALzB;QAQS,kBAAa,GAAY,IAAI,CAAC;KAqBtC;IAnBQ,aAAa;QAClB,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC,IAAI,CAC/B,yCAAyC,EACzC,WAAW,EACX,sBAAsB,CACvB,CAAC;QACF,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC3B,QAAQ,CAAC;QAET,UAAU,CAAC,GAAG,EAAE,GAAC,OAAO,CAAC,GAAG,CAAC,oBAAoB,GAAG,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,GAAC,EAAC,IAAI,CAAC,CAAC;IACzF,CAAC;IAEM,WAAW;QAChB,QAAQ,CAAC;QACT,IAAG,IAAI,CAAC,cAAc,IAAI,IAAI,EAAC;YAC7B,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,CAAC;SAC7B;QACD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC5B,CAAC;;wEAvBU,YAAY;4FAAZ,YAAY;QCNzB,oEAAG;QACD,wHACF;QAAA,4DAAI;QAEJ,oEAAG;QACA,0IACH;QAAA,4DAAI;QACJ,sEAAK;QACH,4EAAkC;QAA1B,oIAAS,mBAAe,IAAC;QAAC,sEAAW;QAAA,4DAAS;QACxD,4DAAM;QACN,gEAAI;QACJ,sEAAK;QACH,4EAA2D;QAAnD,oIAAS,iBAAa,IAAC;QAA4B,wEAAY;QAAA,4DAAS;QAClF,4DAAM;;QAD4B,0DAA0B;QAA1B,uFAA0B;;;;;;;;;;;;;;ACZ5D;AAAA;AAAA;AAAA;AAAA;AAA0D;AAEX;;AAYxC,MAAM,SAAS;;kEAAT,SAAS;wFAAT,SAAS,cAFR,2DAAY;6FADb,EAAE,YAHJ;YACP,uEAAa;SACd;mIAIU,SAAS,mBARlB,2DAAY,aAGZ,uEAAa;;;;;;;;;;;;;;;;;;;ACV8B;AAGF;AACY;AAEzD,IAAI,qEAAW,CAAC,UAAU,EAAE;IAC1B,oEAAc,EAAE,CAAC;CAClB;AAED,2EAAwB,CAAC,eAAe,CAAC,yDAAS,CAAC;KAChD,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;;;ACXpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA,4CAA4C,WAAW;AACvD;AACA;AACA,qC","file":"main.js","sourcesContent":["// This file can be replaced during build by using the `fileReplacements` array.\n// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.\n// The list of file replacements can be found in `angular.json`.\n\nexport const environment = {\n production: false\n};\n\n/*\n * For easier debugging in development mode, you can import the following file\n * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.\n *\n * This import should be commented out in production mode because it will have a negative impact\n * on performance if an error is thrown.\n */\n// import 'zone.js/dist/zone-error'; // Included with Angular CLI.\n","import { Component, VERSION } from \"@angular/core\";\n\n@Component({\n selector: \"app-root\",\n templateUrl: \"./app.component.html\",\n styleUrls: [\"./app.component.css\"]\n})\nexport class AppComponent {\n\n private windowInstance: any;\n public disableButton: boolean = true;\n\n public openNewWindow() {\n this.windowInstance = window.open(\n \"/Applications/Test/TestWindow/test.html\",\n \"MsgWindow\",\n \"width=400,height=300\"\n );\n this.disableButton = false;\n debugger;\n\n setTimeout(() =>{console.log(\"Is window closed: \" + this.windowInstance.closed)},2000);\n }\n\n public closeWindow(){\n debugger;\n if(this.windowInstance != null){\n this.windowInstance.close();\n }\n this.disableButton = true;\n }\n}\n","\n
\n This page is opened with Microsoft Edge, it's not IE Mode.\n
\n\n\n After clicking \"Open Window\" button, a new page will be opened in IE Mode.\n
\n