├── .editorconfig ├── .gitignore ├── README.md ├── config.xml ├── ioni2a.gif ├── ionic.config.json ├── ionic2.gif ├── ionic2b.gif ├── ionic2c.gif ├── package.json ├── resources ├── android │ ├── icon │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ └── splash │ │ ├── drawable-land-hdpi-screen.png │ │ ├── drawable-land-ldpi-screen.png │ │ ├── drawable-land-mdpi-screen.png │ │ ├── drawable-land-xhdpi-screen.png │ │ ├── drawable-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── icon.png ├── ios │ ├── icon │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ └── splash │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ └── Default~iphone.png └── splash.png ├── src ├── app │ ├── app.component.ts │ ├── app.module.ts │ ├── app.scss │ ├── main.dev.ts │ └── main.prod.ts ├── assets │ └── icon │ │ └── favicon.ico ├── components │ ├── fab-toolbar │ │ ├── declarations.d.ts │ │ ├── fab-toolbar.scss │ │ └── fab-toolbar.ts │ └── swipedtab │ │ ├── swipedtab.d.ts │ │ └── swipedtab.ts ├── declarations.d.ts ├── fab-toolbar.scss ├── fab-toolbar.ts ├── index.html ├── manifest.json ├── pages │ ├── about │ │ ├── about.html │ │ ├── about.scss │ │ └── about.ts │ ├── contact │ │ ├── contact.html │ │ ├── contact.scss │ │ └── contact.ts │ ├── home │ │ ├── home.html │ │ ├── home.scss │ │ └── home.ts │ ├── tabs │ │ ├── tabs.html │ │ └── tabs.ts │ └── test │ │ ├── test.html │ │ ├── test.scss │ │ └── test.ts ├── service-worker.js └── theme │ └── variables.scss ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/config.xml -------------------------------------------------------------------------------- /ioni2a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/ioni2a.gif -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/ionic.config.json -------------------------------------------------------------------------------- /ionic2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/ionic2.gif -------------------------------------------------------------------------------- /ionic2b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/ionic2b.gif -------------------------------------------------------------------------------- /ionic2c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/ionic2c.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/main.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/app/main.dev.ts -------------------------------------------------------------------------------- /src/app/main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/app/main.prod.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/components/fab-toolbar/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/components/fab-toolbar/declarations.d.ts -------------------------------------------------------------------------------- /src/components/fab-toolbar/fab-toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/components/fab-toolbar/fab-toolbar.scss -------------------------------------------------------------------------------- /src/components/fab-toolbar/fab-toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/components/fab-toolbar/fab-toolbar.ts -------------------------------------------------------------------------------- /src/components/swipedtab/swipedtab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/components/swipedtab/swipedtab.d.ts -------------------------------------------------------------------------------- /src/components/swipedtab/swipedtab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/components/swipedtab/swipedtab.ts -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/fab-toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/fab-toolbar.scss -------------------------------------------------------------------------------- /src/fab-toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/fab-toolbar.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/about/about.html -------------------------------------------------------------------------------- /src/pages/about/about.scss: -------------------------------------------------------------------------------- 1 | page-about { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/about/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/about/about.ts -------------------------------------------------------------------------------- /src/pages/contact/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/contact/contact.html -------------------------------------------------------------------------------- /src/pages/contact/contact.scss: -------------------------------------------------------------------------------- 1 | page-contact { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/contact/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/contact/contact.ts -------------------------------------------------------------------------------- /src/pages/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/home/home.html -------------------------------------------------------------------------------- /src/pages/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/home/home.scss -------------------------------------------------------------------------------- /src/pages/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/home/home.ts -------------------------------------------------------------------------------- /src/pages/tabs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/tabs/tabs.html -------------------------------------------------------------------------------- /src/pages/tabs/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/tabs/tabs.ts -------------------------------------------------------------------------------- /src/pages/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/test/test.html -------------------------------------------------------------------------------- /src/pages/test/test.scss: -------------------------------------------------------------------------------- 1 | page-test { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/pages/test/test.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsof1111/ionic2-swipedTab-OpenProject/HEAD/tslint.json --------------------------------------------------------------------------------