├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── pages-deployment.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── EULA.html ├── LICENSE ├── README.md ├── generate-sitemaps.js ├── meta ├── firebase_user_activity.png └── webpage_preview.png ├── package.json ├── src ├── dependencies.js ├── es6 │ ├── core │ │ ├── app.js │ │ ├── bridge │ │ │ ├── Bridge.js │ │ │ ├── Channel.js │ │ │ ├── HybridHttp.js │ │ │ ├── index.js │ │ │ └── requests.js │ │ ├── cheerio-worker.js │ │ ├── controller │ │ │ ├── AboutController.js │ │ │ ├── AccountController.js │ │ │ ├── CMKeywordController.js │ │ │ ├── CMTopicController.js │ │ │ ├── CMUsersController.js │ │ │ ├── ChatDetailController.js │ │ │ ├── ChatListController.js │ │ │ ├── ContentManageController.js │ │ │ ├── EditPostController.js │ │ │ ├── FeatureRouteController.js │ │ │ ├── FindMessageController.js │ │ │ ├── HistoryController.js │ │ │ ├── HistoryDetailController.js │ │ │ ├── IRListController.js │ │ │ ├── LikesController.js │ │ │ ├── MyPostController.js │ │ │ ├── MyReplyController.js │ │ │ ├── NotificationController.js │ │ │ ├── PostDetailController.js │ │ │ ├── PostListController.js │ │ │ ├── SearchController.js │ │ │ ├── TabController.js │ │ │ ├── TopicListController.js │ │ │ ├── UserProfileController.js │ │ │ ├── VersionController.js │ │ │ ├── WriteNewPostController.js │ │ │ ├── WriteReplyPostController.js │ │ │ ├── WriteReportController.js │ │ │ ├── base │ │ │ │ └── IRLifecycleOwner.js │ │ │ └── index.js │ │ ├── controllers.js │ │ ├── delegates │ │ │ ├── index.js │ │ │ └── pagination-popover-delegates.js │ │ ├── directives.js │ │ ├── mapper │ │ │ └── mapper.js │ │ ├── model │ │ │ ├── general-html.js │ │ │ ├── hkepc-html.js │ │ │ └── requests.js │ │ ├── schema.js │ │ ├── service │ │ │ ├── ApiService.js │ │ │ ├── AuthService.js │ │ │ ├── HistoryService.js │ │ │ ├── LocalStorageService.js │ │ │ ├── MessageService.js │ │ │ └── index.js │ │ └── services.js │ ├── data │ │ └── config │ │ │ └── hkepc.js │ └── utils │ │ ├── search.js │ │ ├── url.js │ │ └── xml.js ├── ionic │ ├── README.md │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ ├── js │ │ ├── ionic-angular.js │ │ └── ionic.js │ └── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _slides.scss │ │ ├── _spinner.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ ├── ionicons │ │ ├── _ionicons-font.scss │ │ ├── _ionicons-icons.scss │ │ ├── _ionicons-variables.scss │ │ └── ionicons.scss │ │ └── tsconfig.json └── scss │ ├── about │ ├── about.version.view.scss │ └── about.view.scss │ ├── account │ └── account.view.scss │ ├── angular.ngtoast.scss │ ├── animations │ └── shake.notice.scss │ ├── chats │ ├── chats.details.view.scss │ └── chats.list.view.scss │ ├── contentmanage │ ├── keyword.view.scss │ └── users.view.scss │ ├── edit.view.scss │ ├── eula.scss │ ├── feature.view.scss │ ├── global.scss │ ├── input.helper.scss │ ├── ionic.app.dark.scss │ ├── ionic.app.oled.dark.scss │ ├── ionic.app.scss │ ├── ir.scss │ ├── mypost │ └── mypost.view.scss │ ├── myreply │ └── myreply.view.scss │ ├── notification │ └── notification.view.scss │ ├── page.picker.scss │ ├── search.view.scss │ ├── spinner.scss │ ├── topics │ ├── card.view.scss │ ├── post.list.view.scss │ └── topics.view.scss │ ├── user.profile.scss │ ├── variables.dark.scss │ ├── variables.oled.dark.scss │ └── variables.scss ├── topics.json ├── webpack.config.js └── www ├── ads.txt ├── fonts ├── hack-bold-subset.woff2 ├── hack-bolditalic-subset.woff2 ├── hack-italic-subset.woff2 ├── hack-regular-subset.woff2 ├── ionicons.eot ├── ionicons.svg ├── ionicons.ttf └── ionicons.woff ├── img ├── AndroidLogo.png ├── AppleLogo.png ├── default-avatar.png ├── default-dead-placeholder.png ├── default-placeholder.png ├── gifs │ ├── VsX4_shifty_P31Twc0M1TeT.gif │ ├── dizzy.gif │ ├── icon22.gif │ ├── icon77.gif │ ├── icon_adore.gif │ ├── icon_agree.gif │ ├── icon_angry2.gif │ ├── icon_baby.gif │ ├── icon_band.gif │ ├── icon_biggrin.gif │ ├── icon_chair.gif │ ├── icon_cheers2.gif │ ├── icon_clap.gif │ ├── icon_confused.gif │ ├── icon_crutch.gif │ ├── icon_cry.gif │ ├── icon_crybye.gif │ ├── icon_dev.gif │ ├── icon_discuss.gif │ ├── icon_drool.gif │ ├── icon_eek.gif │ ├── icon_fight.gif │ ├── icon_giveup.gif │ ├── icon_good.gif │ ├── icon_goodjob.gif │ ├── icon_gun2.gif │ ├── icon_haha.gif │ ├── icon_happybday.gif │ ├── icon_help.gif │ ├── icon_hitwall.gif │ ├── icon_kicking.gif │ ├── icon_kiss.gif │ ├── icon_mad.gif │ ├── icon_naughty.gif │ ├── icon_nono.gif │ ├── icon_photo.gif │ ├── icon_sleep.gif │ ├── icon_smoke.gif │ ├── icon_tongue.gif │ ├── loveliness.gif │ ├── noway.gif │ ├── shutup.gif │ ├── smile_27.gif │ ├── smile_38.gif │ ├── smile_44.gif │ └── titter.gif └── icon.png ├── index.html ├── robots.txt ├── sitemap.txt ├── templates ├── about │ ├── version.android.md │ ├── version.html │ └── version.md ├── directives │ └── input.helper.html ├── edit-post.html ├── features │ ├── account │ │ └── account.html │ ├── chats │ │ ├── chats.details.html │ │ └── chats.list.html │ ├── contentmanage │ │ ├── content.manage.html │ │ ├── keywords.html │ │ ├── topics.html │ │ └── users.html │ ├── features.route.html │ ├── history │ │ ├── history.details.html │ │ └── history.html │ ├── mypost │ │ └── my.post.html │ ├── myreply │ │ └── my.reply.html │ └── notification │ │ └── notification.html ├── find-message.html ├── ir │ └── index.html ├── modals │ ├── EULA.html │ ├── categories.html │ ├── filter-order.html │ ├── menus.html │ ├── page-slider.html │ ├── report-post.html │ └── sub-forums.html ├── post-detail.html ├── post-list.html ├── search.html ├── tab-about.html ├── tab-likes.html ├── tab-topics.html ├── tabs.html ├── user-profile.html ├── write-new-post.html ├── write-reply-post.html └── write-report.html └── version.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/pages-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.github/workflows/pages-deployment.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /EULA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/EULA.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/README.md -------------------------------------------------------------------------------- /generate-sitemaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/generate-sitemaps.js -------------------------------------------------------------------------------- /meta/firebase_user_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/meta/firebase_user_activity.png -------------------------------------------------------------------------------- /meta/webpage_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/meta/webpage_preview.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/package.json -------------------------------------------------------------------------------- /src/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/dependencies.js -------------------------------------------------------------------------------- /src/es6/core/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/app.js -------------------------------------------------------------------------------- /src/es6/core/bridge/Bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/bridge/Bridge.js -------------------------------------------------------------------------------- /src/es6/core/bridge/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/bridge/Channel.js -------------------------------------------------------------------------------- /src/es6/core/bridge/HybridHttp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/bridge/HybridHttp.js -------------------------------------------------------------------------------- /src/es6/core/bridge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/bridge/index.js -------------------------------------------------------------------------------- /src/es6/core/bridge/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/bridge/requests.js -------------------------------------------------------------------------------- /src/es6/core/cheerio-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/cheerio-worker.js -------------------------------------------------------------------------------- /src/es6/core/controller/AboutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/AboutController.js -------------------------------------------------------------------------------- /src/es6/core/controller/AccountController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/AccountController.js -------------------------------------------------------------------------------- /src/es6/core/controller/CMKeywordController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/CMKeywordController.js -------------------------------------------------------------------------------- /src/es6/core/controller/CMTopicController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/CMTopicController.js -------------------------------------------------------------------------------- /src/es6/core/controller/CMUsersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/CMUsersController.js -------------------------------------------------------------------------------- /src/es6/core/controller/ChatDetailController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/ChatDetailController.js -------------------------------------------------------------------------------- /src/es6/core/controller/ChatListController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/ChatListController.js -------------------------------------------------------------------------------- /src/es6/core/controller/ContentManageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/ContentManageController.js -------------------------------------------------------------------------------- /src/es6/core/controller/EditPostController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/EditPostController.js -------------------------------------------------------------------------------- /src/es6/core/controller/FeatureRouteController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/FeatureRouteController.js -------------------------------------------------------------------------------- /src/es6/core/controller/FindMessageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/FindMessageController.js -------------------------------------------------------------------------------- /src/es6/core/controller/HistoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/HistoryController.js -------------------------------------------------------------------------------- /src/es6/core/controller/HistoryDetailController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/HistoryDetailController.js -------------------------------------------------------------------------------- /src/es6/core/controller/IRListController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/IRListController.js -------------------------------------------------------------------------------- /src/es6/core/controller/LikesController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/LikesController.js -------------------------------------------------------------------------------- /src/es6/core/controller/MyPostController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/MyPostController.js -------------------------------------------------------------------------------- /src/es6/core/controller/MyReplyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/MyReplyController.js -------------------------------------------------------------------------------- /src/es6/core/controller/NotificationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/NotificationController.js -------------------------------------------------------------------------------- /src/es6/core/controller/PostDetailController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/PostDetailController.js -------------------------------------------------------------------------------- /src/es6/core/controller/PostListController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/PostListController.js -------------------------------------------------------------------------------- /src/es6/core/controller/SearchController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/SearchController.js -------------------------------------------------------------------------------- /src/es6/core/controller/TabController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/TabController.js -------------------------------------------------------------------------------- /src/es6/core/controller/TopicListController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/TopicListController.js -------------------------------------------------------------------------------- /src/es6/core/controller/UserProfileController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/UserProfileController.js -------------------------------------------------------------------------------- /src/es6/core/controller/VersionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/VersionController.js -------------------------------------------------------------------------------- /src/es6/core/controller/WriteNewPostController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/WriteNewPostController.js -------------------------------------------------------------------------------- /src/es6/core/controller/WriteReplyPostController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/WriteReplyPostController.js -------------------------------------------------------------------------------- /src/es6/core/controller/WriteReportController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/WriteReportController.js -------------------------------------------------------------------------------- /src/es6/core/controller/base/IRLifecycleOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/base/IRLifecycleOwner.js -------------------------------------------------------------------------------- /src/es6/core/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controller/index.js -------------------------------------------------------------------------------- /src/es6/core/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/controllers.js -------------------------------------------------------------------------------- /src/es6/core/delegates/index.js: -------------------------------------------------------------------------------- 1 | export * from './pagination-popover-delegates' 2 | -------------------------------------------------------------------------------- /src/es6/core/delegates/pagination-popover-delegates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/delegates/pagination-popover-delegates.js -------------------------------------------------------------------------------- /src/es6/core/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/directives.js -------------------------------------------------------------------------------- /src/es6/core/mapper/mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/mapper/mapper.js -------------------------------------------------------------------------------- /src/es6/core/model/general-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/model/general-html.js -------------------------------------------------------------------------------- /src/es6/core/model/hkepc-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/model/hkepc-html.js -------------------------------------------------------------------------------- /src/es6/core/model/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/model/requests.js -------------------------------------------------------------------------------- /src/es6/core/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/schema.js -------------------------------------------------------------------------------- /src/es6/core/service/ApiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/service/ApiService.js -------------------------------------------------------------------------------- /src/es6/core/service/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/service/AuthService.js -------------------------------------------------------------------------------- /src/es6/core/service/HistoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/service/HistoryService.js -------------------------------------------------------------------------------- /src/es6/core/service/LocalStorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/service/LocalStorageService.js -------------------------------------------------------------------------------- /src/es6/core/service/MessageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/service/MessageService.js -------------------------------------------------------------------------------- /src/es6/core/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/service/index.js -------------------------------------------------------------------------------- /src/es6/core/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/core/services.js -------------------------------------------------------------------------------- /src/es6/data/config/hkepc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/data/config/hkepc.js -------------------------------------------------------------------------------- /src/es6/utils/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/utils/search.js -------------------------------------------------------------------------------- /src/es6/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/utils/url.js -------------------------------------------------------------------------------- /src/es6/utils/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/es6/utils/xml.js -------------------------------------------------------------------------------- /src/ionic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/README.md -------------------------------------------------------------------------------- /src/ionic/css/ionic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/css/ionic.css -------------------------------------------------------------------------------- /src/ionic/css/ionic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/css/ionic.min.css -------------------------------------------------------------------------------- /src/ionic/js/ionic-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/js/ionic-angular.js -------------------------------------------------------------------------------- /src/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/js/ionic.js -------------------------------------------------------------------------------- /src/ionic/scss/_action-sheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_action-sheet.scss -------------------------------------------------------------------------------- /src/ionic/scss/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_animations.scss -------------------------------------------------------------------------------- /src/ionic/scss/_backdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_backdrop.scss -------------------------------------------------------------------------------- /src/ionic/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_badge.scss -------------------------------------------------------------------------------- /src/ionic/scss/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_bar.scss -------------------------------------------------------------------------------- /src/ionic/scss/_button-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_button-bar.scss -------------------------------------------------------------------------------- /src/ionic/scss/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_button.scss -------------------------------------------------------------------------------- /src/ionic/scss/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_checkbox.scss -------------------------------------------------------------------------------- /src/ionic/scss/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_form.scss -------------------------------------------------------------------------------- /src/ionic/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_grid.scss -------------------------------------------------------------------------------- /src/ionic/scss/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_items.scss -------------------------------------------------------------------------------- /src/ionic/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_list.scss -------------------------------------------------------------------------------- /src/ionic/scss/_loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_loading.scss -------------------------------------------------------------------------------- /src/ionic/scss/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_menu.scss -------------------------------------------------------------------------------- /src/ionic/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_mixins.scss -------------------------------------------------------------------------------- /src/ionic/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_modal.scss -------------------------------------------------------------------------------- /src/ionic/scss/_platform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_platform.scss -------------------------------------------------------------------------------- /src/ionic/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_popover.scss -------------------------------------------------------------------------------- /src/ionic/scss/_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_popup.scss -------------------------------------------------------------------------------- /src/ionic/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_progress.scss -------------------------------------------------------------------------------- /src/ionic/scss/_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_radio.scss -------------------------------------------------------------------------------- /src/ionic/scss/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_range.scss -------------------------------------------------------------------------------- /src/ionic/scss/_refresher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_refresher.scss -------------------------------------------------------------------------------- /src/ionic/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_reset.scss -------------------------------------------------------------------------------- /src/ionic/scss/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_scaffolding.scss -------------------------------------------------------------------------------- /src/ionic/scss/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_select.scss -------------------------------------------------------------------------------- /src/ionic/scss/_slide-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_slide-box.scss -------------------------------------------------------------------------------- /src/ionic/scss/_slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_slides.scss -------------------------------------------------------------------------------- /src/ionic/scss/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_spinner.scss -------------------------------------------------------------------------------- /src/ionic/scss/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_tabs.scss -------------------------------------------------------------------------------- /src/ionic/scss/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_toggle.scss -------------------------------------------------------------------------------- /src/ionic/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_transitions.scss -------------------------------------------------------------------------------- /src/ionic/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_type.scss -------------------------------------------------------------------------------- /src/ionic/scss/_util.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_util.scss -------------------------------------------------------------------------------- /src/ionic/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/_variables.scss -------------------------------------------------------------------------------- /src/ionic/scss/ionic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/ionic.scss -------------------------------------------------------------------------------- /src/ionic/scss/ionicons/_ionicons-font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/ionicons/_ionicons-font.scss -------------------------------------------------------------------------------- /src/ionic/scss/ionicons/_ionicons-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/ionicons/_ionicons-icons.scss -------------------------------------------------------------------------------- /src/ionic/scss/ionicons/_ionicons-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/ionicons/_ionicons-variables.scss -------------------------------------------------------------------------------- /src/ionic/scss/ionicons/ionicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/ionicons/ionicons.scss -------------------------------------------------------------------------------- /src/ionic/scss/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/ionic/scss/tsconfig.json -------------------------------------------------------------------------------- /src/scss/about/about.version.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/about/about.version.view.scss -------------------------------------------------------------------------------- /src/scss/about/about.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/about/about.view.scss -------------------------------------------------------------------------------- /src/scss/account/account.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/account/account.view.scss -------------------------------------------------------------------------------- /src/scss/angular.ngtoast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/angular.ngtoast.scss -------------------------------------------------------------------------------- /src/scss/animations/shake.notice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/animations/shake.notice.scss -------------------------------------------------------------------------------- /src/scss/chats/chats.details.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/chats/chats.details.view.scss -------------------------------------------------------------------------------- /src/scss/chats/chats.list.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/chats/chats.list.view.scss -------------------------------------------------------------------------------- /src/scss/contentmanage/keyword.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/contentmanage/keyword.view.scss -------------------------------------------------------------------------------- /src/scss/contentmanage/users.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/contentmanage/users.view.scss -------------------------------------------------------------------------------- /src/scss/edit.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/edit.view.scss -------------------------------------------------------------------------------- /src/scss/eula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/eula.scss -------------------------------------------------------------------------------- /src/scss/feature.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/feature.view.scss -------------------------------------------------------------------------------- /src/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/global.scss -------------------------------------------------------------------------------- /src/scss/input.helper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/input.helper.scss -------------------------------------------------------------------------------- /src/scss/ionic.app.dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/ionic.app.dark.scss -------------------------------------------------------------------------------- /src/scss/ionic.app.oled.dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/ionic.app.oled.dark.scss -------------------------------------------------------------------------------- /src/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/ionic.app.scss -------------------------------------------------------------------------------- /src/scss/ir.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/ir.scss -------------------------------------------------------------------------------- /src/scss/mypost/mypost.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/mypost/mypost.view.scss -------------------------------------------------------------------------------- /src/scss/myreply/myreply.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/myreply/myreply.view.scss -------------------------------------------------------------------------------- /src/scss/notification/notification.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/notification/notification.view.scss -------------------------------------------------------------------------------- /src/scss/page.picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/page.picker.scss -------------------------------------------------------------------------------- /src/scss/search.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/search.view.scss -------------------------------------------------------------------------------- /src/scss/spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/spinner.scss -------------------------------------------------------------------------------- /src/scss/topics/card.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/topics/card.view.scss -------------------------------------------------------------------------------- /src/scss/topics/post.list.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/topics/post.list.view.scss -------------------------------------------------------------------------------- /src/scss/topics/topics.view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/topics/topics.view.scss -------------------------------------------------------------------------------- /src/scss/user.profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/user.profile.scss -------------------------------------------------------------------------------- /src/scss/variables.dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/variables.dark.scss -------------------------------------------------------------------------------- /src/scss/variables.oled.dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/variables.oled.dark.scss -------------------------------------------------------------------------------- /src/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/src/scss/variables.scss -------------------------------------------------------------------------------- /topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/topics.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/webpack.config.js -------------------------------------------------------------------------------- /www/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-6824192750449483, DIRECT, f08c47fec0942fa0 2 | -------------------------------------------------------------------------------- /www/fonts/hack-bold-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/hack-bold-subset.woff2 -------------------------------------------------------------------------------- /www/fonts/hack-bolditalic-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/hack-bolditalic-subset.woff2 -------------------------------------------------------------------------------- /www/fonts/hack-italic-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/hack-italic-subset.woff2 -------------------------------------------------------------------------------- /www/fonts/hack-regular-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/hack-regular-subset.woff2 -------------------------------------------------------------------------------- /www/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/ionicons.eot -------------------------------------------------------------------------------- /www/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/ionicons.svg -------------------------------------------------------------------------------- /www/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/ionicons.ttf -------------------------------------------------------------------------------- /www/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/fonts/ionicons.woff -------------------------------------------------------------------------------- /www/img/AndroidLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/AndroidLogo.png -------------------------------------------------------------------------------- /www/img/AppleLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/AppleLogo.png -------------------------------------------------------------------------------- /www/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/default-avatar.png -------------------------------------------------------------------------------- /www/img/default-dead-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/default-dead-placeholder.png -------------------------------------------------------------------------------- /www/img/default-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/default-placeholder.png -------------------------------------------------------------------------------- /www/img/gifs/VsX4_shifty_P31Twc0M1TeT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/VsX4_shifty_P31Twc0M1TeT.gif -------------------------------------------------------------------------------- /www/img/gifs/dizzy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/dizzy.gif -------------------------------------------------------------------------------- /www/img/gifs/icon22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon22.gif -------------------------------------------------------------------------------- /www/img/gifs/icon77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon77.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_adore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_adore.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_agree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_agree.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_angry2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_angry2.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_baby.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_baby.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_band.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_band.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_biggrin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_biggrin.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_chair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_chair.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_cheers2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_cheers2.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_clap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_clap.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_confused.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_confused.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_crutch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_crutch.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_cry.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_crybye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_crybye.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_dev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_dev.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_discuss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_discuss.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_drool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_drool.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_eek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_eek.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_fight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_fight.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_giveup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_giveup.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_good.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_goodjob.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_goodjob.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_gun2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_gun2.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_haha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_haha.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_happybday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_happybday.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_help.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_hitwall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_hitwall.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_kicking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_kicking.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_kiss.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_mad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_mad.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_naughty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_naughty.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_nono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_nono.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_photo.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_sleep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_sleep.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_smoke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_smoke.gif -------------------------------------------------------------------------------- /www/img/gifs/icon_tongue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/icon_tongue.gif -------------------------------------------------------------------------------- /www/img/gifs/loveliness.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/loveliness.gif -------------------------------------------------------------------------------- /www/img/gifs/noway.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/noway.gif -------------------------------------------------------------------------------- /www/img/gifs/shutup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/shutup.gif -------------------------------------------------------------------------------- /www/img/gifs/smile_27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/smile_27.gif -------------------------------------------------------------------------------- /www/img/gifs/smile_38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/smile_38.gif -------------------------------------------------------------------------------- /www/img/gifs/smile_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/smile_44.gif -------------------------------------------------------------------------------- /www/img/gifs/titter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/gifs/titter.gif -------------------------------------------------------------------------------- /www/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/img/icon.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/index.html -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/robots.txt -------------------------------------------------------------------------------- /www/sitemap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/sitemap.txt -------------------------------------------------------------------------------- /www/templates/about/version.android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/about/version.android.md -------------------------------------------------------------------------------- /www/templates/about/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/about/version.html -------------------------------------------------------------------------------- /www/templates/about/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/about/version.md -------------------------------------------------------------------------------- /www/templates/directives/input.helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/directives/input.helper.html -------------------------------------------------------------------------------- /www/templates/edit-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/edit-post.html -------------------------------------------------------------------------------- /www/templates/features/account/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/account/account.html -------------------------------------------------------------------------------- /www/templates/features/chats/chats.details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/chats/chats.details.html -------------------------------------------------------------------------------- /www/templates/features/chats/chats.list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/chats/chats.list.html -------------------------------------------------------------------------------- /www/templates/features/contentmanage/content.manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/contentmanage/content.manage.html -------------------------------------------------------------------------------- /www/templates/features/contentmanage/keywords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/contentmanage/keywords.html -------------------------------------------------------------------------------- /www/templates/features/contentmanage/topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/contentmanage/topics.html -------------------------------------------------------------------------------- /www/templates/features/contentmanage/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/contentmanage/users.html -------------------------------------------------------------------------------- /www/templates/features/features.route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/features.route.html -------------------------------------------------------------------------------- /www/templates/features/history/history.details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/history/history.details.html -------------------------------------------------------------------------------- /www/templates/features/history/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/history/history.html -------------------------------------------------------------------------------- /www/templates/features/mypost/my.post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/mypost/my.post.html -------------------------------------------------------------------------------- /www/templates/features/myreply/my.reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/myreply/my.reply.html -------------------------------------------------------------------------------- /www/templates/features/notification/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/features/notification/notification.html -------------------------------------------------------------------------------- /www/templates/find-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/find-message.html -------------------------------------------------------------------------------- /www/templates/ir/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/ir/index.html -------------------------------------------------------------------------------- /www/templates/modals/EULA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/EULA.html -------------------------------------------------------------------------------- /www/templates/modals/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/categories.html -------------------------------------------------------------------------------- /www/templates/modals/filter-order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/filter-order.html -------------------------------------------------------------------------------- /www/templates/modals/menus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/menus.html -------------------------------------------------------------------------------- /www/templates/modals/page-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/page-slider.html -------------------------------------------------------------------------------- /www/templates/modals/report-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/report-post.html -------------------------------------------------------------------------------- /www/templates/modals/sub-forums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/modals/sub-forums.html -------------------------------------------------------------------------------- /www/templates/post-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/post-detail.html -------------------------------------------------------------------------------- /www/templates/post-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/post-list.html -------------------------------------------------------------------------------- /www/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/search.html -------------------------------------------------------------------------------- /www/templates/tab-about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/tab-about.html -------------------------------------------------------------------------------- /www/templates/tab-likes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/tab-likes.html -------------------------------------------------------------------------------- /www/templates/tab-topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/tab-topics.html -------------------------------------------------------------------------------- /www/templates/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/tabs.html -------------------------------------------------------------------------------- /www/templates/user-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/user-profile.html -------------------------------------------------------------------------------- /www/templates/write-new-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/write-new-post.html -------------------------------------------------------------------------------- /www/templates/write-reply-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/write-reply-post.html -------------------------------------------------------------------------------- /www/templates/write-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaplo917/hkepc-ionic-reader/HEAD/www/templates/write-report.html -------------------------------------------------------------------------------- /www/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.1.14" 3 | } 4 | --------------------------------------------------------------------------------