No Description

src_app_navtabs_navtabs_module_ts.js 8.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. "use strict";
  2. (self["webpackChunkapp"] = self["webpackChunkapp"] || []).push([["src_app_navtabs_navtabs_module_ts"],{
  3. /***/ 3255:
  4. /*!***************************************************!*\
  5. !*** ./src/app/navtabs/navtabs-routing.module.ts ***!
  6. \***************************************************/
  7. /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
  8. __webpack_require__.r(__webpack_exports__);
  9. /* harmony export */ __webpack_require__.d(__webpack_exports__, {
  10. /* harmony export */ "NavtabsPageRoutingModule": () => (/* binding */ NavtabsPageRoutingModule)
  11. /* harmony export */ });
  12. /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! tslib */ 4929);
  13. /* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 3184);
  14. /* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/router */ 2816);
  15. /* harmony import */ var _navtabs_page__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./navtabs.page */ 4628);
  16. const routes = [
  17. {
  18. path: 'navtabsTab',
  19. component: _navtabs_page__WEBPACK_IMPORTED_MODULE_0__.NavtabsPage,
  20. children: [
  21. {
  22. path: 'home',
  23. loadChildren: () => Promise.all(/*! import() */[__webpack_require__.e("common"), __webpack_require__.e("src_app_home_home_module_ts")]).then(__webpack_require__.bind(__webpack_require__, /*! ../home/home.module */ 3467)).then(m => m.HomePageModule)
  24. },
  25. {
  26. path: 'news',
  27. loadChildren: () => Promise.all(/*! import() */[__webpack_require__.e("common"), __webpack_require__.e("src_app_news_news_module_ts")]).then(__webpack_require__.bind(__webpack_require__, /*! ../news/news.module */ 1926)).then(m => m.NewsPageModule)
  28. },
  29. {
  30. path: 'news-detail/:id',
  31. loadChildren: () => Promise.all(/*! import() */[__webpack_require__.e("common"), __webpack_require__.e("src_app_news-detail_news-detail_module_ts")]).then(__webpack_require__.bind(__webpack_require__, /*! ../news-detail/news-detail.module */ 9644)).then(m => m.NewsDetailPageModule)
  32. },
  33. {
  34. path: 'article',
  35. loadChildren: () => __webpack_require__.e(/*! import() */ "src_app_article_article_module_ts").then(__webpack_require__.bind(__webpack_require__, /*! ../article/article.module */ 5745)).then(m => m.ArticlePageModule)
  36. },
  37. {
  38. path: 'youtube',
  39. loadChildren: () => __webpack_require__.e(/*! import() */ "src_app_youtube_youtube_module_ts").then(__webpack_require__.bind(__webpack_require__, /*! ../youtube/youtube.module */ 3756)).then(m => m.YoutubePageModule)
  40. },
  41. {
  42. path: '',
  43. redirectTo: '/navtabs/navtabsTab/home',
  44. pathMatch: 'full'
  45. }
  46. ]
  47. },
  48. {
  49. path: '',
  50. redirectTo: '/navtabs/navtabsTab/home',
  51. pathMatch: 'full'
  52. }
  53. ];
  54. let NavtabsPageRoutingModule = class NavtabsPageRoutingModule {
  55. };
  56. NavtabsPageRoutingModule = (0,tslib__WEBPACK_IMPORTED_MODULE_1__.__decorate)([
  57. (0,_angular_core__WEBPACK_IMPORTED_MODULE_2__.NgModule)({
  58. imports: [_angular_router__WEBPACK_IMPORTED_MODULE_3__.RouterModule.forChild(routes)],
  59. exports: [_angular_router__WEBPACK_IMPORTED_MODULE_3__.RouterModule],
  60. })
  61. ], NavtabsPageRoutingModule);
  62. /***/ }),
  63. /***/ 228:
  64. /*!*******************************************!*\
  65. !*** ./src/app/navtabs/navtabs.module.ts ***!
  66. \*******************************************/
  67. /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
  68. __webpack_require__.r(__webpack_exports__);
  69. /* harmony export */ __webpack_require__.d(__webpack_exports__, {
  70. /* harmony export */ "NavtabsPageModule": () => (/* binding */ NavtabsPageModule)
  71. /* harmony export */ });
  72. /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! tslib */ 4929);
  73. /* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 3184);
  74. /* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 6362);
  75. /* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/forms */ 587);
  76. /* harmony import */ var _ionic_angular__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @ionic/angular */ 3819);
  77. /* harmony import */ var _navtabs_routing_module__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./navtabs-routing.module */ 3255);
  78. /* harmony import */ var _navtabs_page__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./navtabs.page */ 4628);
  79. let NavtabsPageModule = class NavtabsPageModule {
  80. };
  81. NavtabsPageModule = (0,tslib__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
  82. (0,_angular_core__WEBPACK_IMPORTED_MODULE_3__.NgModule)({
  83. imports: [
  84. _angular_common__WEBPACK_IMPORTED_MODULE_4__.CommonModule,
  85. _angular_forms__WEBPACK_IMPORTED_MODULE_5__.FormsModule,
  86. _ionic_angular__WEBPACK_IMPORTED_MODULE_6__.IonicModule,
  87. _navtabs_routing_module__WEBPACK_IMPORTED_MODULE_0__.NavtabsPageRoutingModule
  88. ],
  89. declarations: [_navtabs_page__WEBPACK_IMPORTED_MODULE_1__.NavtabsPage]
  90. })
  91. ], NavtabsPageModule);
  92. /***/ }),
  93. /***/ 4628:
  94. /*!*****************************************!*\
  95. !*** ./src/app/navtabs/navtabs.page.ts ***!
  96. \*****************************************/
  97. /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
  98. __webpack_require__.r(__webpack_exports__);
  99. /* harmony export */ __webpack_require__.d(__webpack_exports__, {
  100. /* harmony export */ "NavtabsPage": () => (/* binding */ NavtabsPage)
  101. /* harmony export */ });
  102. /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! tslib */ 4929);
  103. /* harmony import */ var _navtabs_page_html_ngResource__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./navtabs.page.html?ngResource */ 533);
  104. /* harmony import */ var _navtabs_page_scss_ngResource__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./navtabs.page.scss?ngResource */ 9618);
  105. /* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 3184);
  106. let NavtabsPage = class NavtabsPage {
  107. constructor() { }
  108. ngOnInit() {
  109. }
  110. };
  111. NavtabsPage.ctorParameters = () => [];
  112. NavtabsPage = (0,tslib__WEBPACK_IMPORTED_MODULE_2__.__decorate)([
  113. (0,_angular_core__WEBPACK_IMPORTED_MODULE_3__.Component)({
  114. selector: 'app-navtabs',
  115. template: _navtabs_page_html_ngResource__WEBPACK_IMPORTED_MODULE_0__,
  116. styles: [_navtabs_page_scss_ngResource__WEBPACK_IMPORTED_MODULE_1__]
  117. })
  118. ], NavtabsPage);
  119. /***/ }),
  120. /***/ 9618:
  121. /*!******************************************************!*\
  122. !*** ./src/app/navtabs/navtabs.page.scss?ngResource ***!
  123. \******************************************************/
  124. /***/ ((module) => {
  125. module.exports = "\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJuYXZ0YWJzLnBhZ2Uuc2NzcyJ9 */";
  126. /***/ }),
  127. /***/ 533:
  128. /*!******************************************************!*\
  129. !*** ./src/app/navtabs/navtabs.page.html?ngResource ***!
  130. \******************************************************/
  131. /***/ ((module) => {
  132. module.exports = "\n<ion-tabs>\n <ion-tab-bar slot=\"bottom\">\n <ion-tab-button tab=\"home\">\n <ion-icon name=\"globe\"></ion-icon>\n <!-- <ion-label>Home</ion-label> --> \n </ion-tab-button>\n <ion-tab-button tab=\"news\">\n <ion-icon name=\"football\"></ion-icon>\n <!-- <ion-label>News</ion-label> -->\n </ion-tab-button>\n <ion-tab-button tab=\"#\">\n <ion-icon name=\"play-circle\"></ion-icon>\n <!-- <ion-label>Audio</ion-label> -->\n </ion-tab-button> \n <ion-tab-button tab=\"youtube\">\n <ion-icon name=\"logo-youtube\"></ion-icon>\n <!-- <ion-label>Youtube</ion-label> -->\n </ion-tab-button> \n <ion-tab-button tab=\"#\">\n <ion-icon name=\"videocam\"></ion-icon>\n <!-- <ion-label>Video</ion-label> -->\n </ion-tab-button>\n </ion-tab-bar>\n</ion-tabs>";
  133. /***/ })
  134. }]);
  135. //# sourceMappingURL=src_app_navtabs_navtabs_module_ts.js.map