├── .gitignore ├── .jshintrc ├── .vscode ├── launch.json ├── settings.json ├── symbols.json └── tasks.json ├── LICENSE ├── README.md ├── app ├── App_Resources │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ └── drawable-nodpi │ │ │ └── splashscreen.9.png │ └── iOS │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ ├── Default-736h@3x.png │ │ ├── Default-Landscape-568h@2x.png │ │ ├── Default-Landscape-667h@2x.png │ │ ├── Default-Landscape.png │ │ ├── Default-Landscape@2x.png │ │ ├── Default-Landscape@3x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon.png │ │ └── icon@2x.png ├── app.component.ts ├── app.css ├── app.module.ts ├── app.routing.ts ├── app.scss ├── content │ └── logos │ │ ├── bucs-logo.jpg │ │ ├── bucs-logo.png │ │ ├── ntl-Logo-300x286.jpg │ │ └── sutl.jpg ├── context │ └── router.context.ts ├── controls │ ├── card │ │ └── card.control.ts │ ├── content │ │ └── content.control.ts │ ├── controls.ref.ts │ ├── drawer │ │ ├── drawer.common.css │ │ ├── drawer.common.scss │ │ └── drawer.ts │ ├── fab │ │ ├── fab.common.css │ │ ├── fab.common.scss │ │ ├── fab.component.ts │ │ └── fakeFab.component.ts │ ├── icons │ │ ├── ion-icon.css │ │ ├── ion-icon.ts │ │ ├── material-icon.ts │ │ ├── nx-icon.css │ │ ├── nx-icon.scss │ │ └── nx-icon.ts │ ├── list │ │ ├── header.ts │ │ ├── list-item.ts │ │ ├── list.common.css │ │ ├── list.common.scss │ │ └── list.ts │ ├── nav │ │ ├── nav-back.ts │ │ ├── nav-title.ts │ │ ├── nav.common.css │ │ ├── nav.common.scss │ │ └── nav.ts │ ├── parallax │ │ └── parallax.ts │ ├── pullToRefresh │ │ └── pullToRefresh.control.ts │ └── searchList │ │ ├── searchList.css │ │ ├── searchList.html │ │ └── searchList.ts ├── decorators │ └── log.ts ├── directives │ └── primary.ts ├── fonts │ ├── MaterialIcons-Regular.ttf │ └── ionicons.ttf ├── main.ts ├── models │ └── models.ts ├── package.json ├── pages │ ├── competition │ │ ├── club │ │ │ └── club.page.ts │ │ ├── clubList │ │ │ └── club.list.page.ts │ │ ├── competition.page.html │ │ ├── competition.page.ts │ │ ├── findCompetitor │ │ │ └── find.competitor.page.ts │ │ ├── grade │ │ │ ├── competitors │ │ │ │ └── grade.competitors.page.ts │ │ │ └── grade.page.ts │ │ ├── gradeList │ │ │ └── grade.list.page.ts │ │ ├── information │ │ │ └── information.page.ts │ │ ├── startList │ │ │ ├── competitors │ │ │ │ └── competitors.page.ts │ │ │ ├── obsolete.html │ │ │ ├── start.list.items.control.ts │ │ │ └── start.list.page.ts │ │ └── stats │ │ │ ├── stats.page.html │ │ │ └── stats.page.ts │ ├── mapPage │ │ ├── mapPage.html │ │ └── mapPage.ts │ ├── menus.ref.ts │ ├── nav │ │ ├── competition.nav.html │ │ ├── competition.nav.ts │ │ ├── start.nav.control.html │ │ └── start.nav.control.ts │ ├── pages.ref.ts │ ├── region │ │ ├── region.page.html │ │ └── region.page.ts │ ├── regions │ │ ├── regions.page.html │ │ └── regions.page.ts │ ├── start │ │ ├── start.list.search.control.ts │ │ ├── start.page.html │ │ ├── start.page.ts │ │ └── stat.list.start.control.ts │ ├── templates.ref.ts │ └── templates │ │ ├── competitor.result.score.row.ts │ │ ├── competitor.results.css │ │ └── competitor.results.ts ├── pipes │ ├── dates │ │ └── dates.ts │ ├── orderBy │ │ └── orderBy.ts │ ├── pipes.ref.ts │ ├── score │ │ └── score.ts │ ├── startGroup │ │ └── startGroup.ts │ └── title │ │ └── title.ts ├── providers │ ├── leagues │ │ ├── clubCache.ts │ │ ├── clubService.ts │ │ ├── competitionCache.ts │ │ ├── competitionService.ts │ │ ├── competitorService.ts │ │ ├── displayService.ts │ │ ├── gradeCache.ts │ │ ├── gradeService.ts │ │ ├── regionCache.ts │ │ └── regionService.ts │ ├── logger.ts │ ├── navHelper.ts │ ├── providers.ref.ts │ └── routes │ │ └── routes.ts ├── references.d.ts ├── router │ └── remember-location-strategy.ts ├── theme │ ├── _app-common.scss │ ├── _app-variables.scss │ ├── _components.scss │ ├── app.android.css │ ├── app.android.scss │ ├── app.ios.css │ ├── app.ios.scss │ ├── button.css │ ├── button.scss │ ├── colors.css │ ├── components │ │ ├── icons.css │ │ ├── icons.scss │ │ ├── list.css │ │ ├── list.scss │ │ ├── nav.css │ │ └── nav.scss │ ├── fonts.css │ ├── fonts.scss │ └── padding.css ├── vendor-platform.android.ts ├── vendor-platform.ios.ts └── vendor.ts ├── gruntfile.js ├── hooks ├── after-prepare │ └── nativescript-dev-sass.js ├── before-livesync │ └── nativescript-angular-sync.js ├── before-prepare │ ├── nativescript-dev-sass.js │ └── nativescript-dev-typescript.js └── before-watch │ ├── nativescript-dev-sass.js │ └── nativescript-dev-typescript.js ├── package.json ├── package.json.bak ├── references.d.ts ├── screenshots ├── CompetitionList.png ├── RegionsPage-drawer.png ├── RegionsPage.png ├── StartPage.png ├── animation │ ├── load-page.gif │ ├── refresh-page.gif │ └── refresh-pointless-page.gif ├── card+refresh view.png ├── competitionPage.png ├── controls │ └── sidebar.gif ├── pages │ ├── club-list.gif │ ├── grade.page.competitor.results(minus ordering).png │ └── regions.gif ├── pipes │ └── groupBy+orderBy.gif └── style-bug │ ├── after-nav.png │ └── before-nav_20160314015641.png ├── tsconfig.aot.json ├── tsconfig.json ├── tsconfig.json.bak ├── typings.json ├── typings ├── dummy.ios.d.ts └── main.d.ts └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/.jshintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.check.workspaceVersion": false 3 | } -------------------------------------------------------------------------------- /.vscode/symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/.vscode/symbols.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/README.md -------------------------------------------------------------------------------- /app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/app.css -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/app.routing.ts -------------------------------------------------------------------------------- /app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/app.scss -------------------------------------------------------------------------------- /app/content/logos/bucs-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/content/logos/bucs-logo.jpg -------------------------------------------------------------------------------- /app/content/logos/bucs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/content/logos/bucs-logo.png -------------------------------------------------------------------------------- /app/content/logos/ntl-Logo-300x286.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/content/logos/ntl-Logo-300x286.jpg -------------------------------------------------------------------------------- /app/content/logos/sutl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/content/logos/sutl.jpg -------------------------------------------------------------------------------- /app/context/router.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/context/router.context.ts -------------------------------------------------------------------------------- /app/controls/card/card.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/card/card.control.ts -------------------------------------------------------------------------------- /app/controls/content/content.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/content/content.control.ts -------------------------------------------------------------------------------- /app/controls/controls.ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/controls.ref.ts -------------------------------------------------------------------------------- /app/controls/drawer/drawer.common.css: -------------------------------------------------------------------------------- 1 | .side-page{background-color:#fff} 2 | -------------------------------------------------------------------------------- /app/controls/drawer/drawer.common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/drawer/drawer.common.scss -------------------------------------------------------------------------------- /app/controls/drawer/drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/drawer/drawer.ts -------------------------------------------------------------------------------- /app/controls/fab/fab.common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/fab/fab.common.css -------------------------------------------------------------------------------- /app/controls/fab/fab.common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/fab/fab.common.scss -------------------------------------------------------------------------------- /app/controls/fab/fab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/fab/fab.component.ts -------------------------------------------------------------------------------- /app/controls/fab/fakeFab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/fab/fakeFab.component.ts -------------------------------------------------------------------------------- /app/controls/icons/ion-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/icons/ion-icon.css -------------------------------------------------------------------------------- /app/controls/icons/ion-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/icons/ion-icon.ts -------------------------------------------------------------------------------- /app/controls/icons/material-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/icons/material-icon.ts -------------------------------------------------------------------------------- /app/controls/icons/nx-icon.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/icons/nx-icon.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/icons/nx-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/icons/nx-icon.ts -------------------------------------------------------------------------------- /app/controls/list/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/list/header.ts -------------------------------------------------------------------------------- /app/controls/list/list-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/list/list-item.ts -------------------------------------------------------------------------------- /app/controls/list/list.common.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/list/list.common.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/list/list.ts -------------------------------------------------------------------------------- /app/controls/nav/nav-back.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/nav/nav-back.ts -------------------------------------------------------------------------------- /app/controls/nav/nav-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/nav/nav-title.ts -------------------------------------------------------------------------------- /app/controls/nav/nav.common.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/nav/nav.common.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/nav/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/nav/nav.ts -------------------------------------------------------------------------------- /app/controls/parallax/parallax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/parallax/parallax.ts -------------------------------------------------------------------------------- /app/controls/pullToRefresh/pullToRefresh.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/pullToRefresh/pullToRefresh.control.ts -------------------------------------------------------------------------------- /app/controls/searchList/searchList.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controls/searchList/searchList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/searchList/searchList.html -------------------------------------------------------------------------------- /app/controls/searchList/searchList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/controls/searchList/searchList.ts -------------------------------------------------------------------------------- /app/decorators/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/decorators/log.ts -------------------------------------------------------------------------------- /app/directives/primary.ts: -------------------------------------------------------------------------------- 1 | //to-do - assign primary colours 2 | import {Directive} from '@angular/core'; -------------------------------------------------------------------------------- /app/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/fonts/ionicons.ttf -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/models/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/models/models.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/package.json -------------------------------------------------------------------------------- /app/pages/competition/club/club.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/club/club.page.ts -------------------------------------------------------------------------------- /app/pages/competition/clubList/club.list.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/clubList/club.list.page.ts -------------------------------------------------------------------------------- /app/pages/competition/competition.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/competition.page.html -------------------------------------------------------------------------------- /app/pages/competition/competition.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/competition.page.ts -------------------------------------------------------------------------------- /app/pages/competition/findCompetitor/find.competitor.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/findCompetitor/find.competitor.page.ts -------------------------------------------------------------------------------- /app/pages/competition/grade/competitors/grade.competitors.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/grade/competitors/grade.competitors.page.ts -------------------------------------------------------------------------------- /app/pages/competition/grade/grade.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/grade/grade.page.ts -------------------------------------------------------------------------------- /app/pages/competition/gradeList/grade.list.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/gradeList/grade.list.page.ts -------------------------------------------------------------------------------- /app/pages/competition/information/information.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/information/information.page.ts -------------------------------------------------------------------------------- /app/pages/competition/startList/competitors/competitors.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/startList/competitors/competitors.page.ts -------------------------------------------------------------------------------- /app/pages/competition/startList/obsolete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/startList/obsolete.html -------------------------------------------------------------------------------- /app/pages/competition/startList/start.list.items.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/startList/start.list.items.control.ts -------------------------------------------------------------------------------- /app/pages/competition/startList/start.list.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/startList/start.list.page.ts -------------------------------------------------------------------------------- /app/pages/competition/stats/stats.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/stats/stats.page.html -------------------------------------------------------------------------------- /app/pages/competition/stats/stats.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/competition/stats/stats.page.ts -------------------------------------------------------------------------------- /app/pages/mapPage/mapPage.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/pages/mapPage/mapPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/mapPage/mapPage.ts -------------------------------------------------------------------------------- /app/pages/menus.ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/menus.ref.ts -------------------------------------------------------------------------------- /app/pages/nav/competition.nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/nav/competition.nav.html -------------------------------------------------------------------------------- /app/pages/nav/competition.nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/nav/competition.nav.ts -------------------------------------------------------------------------------- /app/pages/nav/start.nav.control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/nav/start.nav.control.html -------------------------------------------------------------------------------- /app/pages/nav/start.nav.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/nav/start.nav.control.ts -------------------------------------------------------------------------------- /app/pages/pages.ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/pages.ref.ts -------------------------------------------------------------------------------- /app/pages/region/region.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/region/region.page.html -------------------------------------------------------------------------------- /app/pages/region/region.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/region/region.page.ts -------------------------------------------------------------------------------- /app/pages/regions/regions.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/regions/regions.page.html -------------------------------------------------------------------------------- /app/pages/regions/regions.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/regions/regions.page.ts -------------------------------------------------------------------------------- /app/pages/start/start.list.search.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/start/start.list.search.control.ts -------------------------------------------------------------------------------- /app/pages/start/start.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/start/start.page.html -------------------------------------------------------------------------------- /app/pages/start/start.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/start/start.page.ts -------------------------------------------------------------------------------- /app/pages/start/stat.list.start.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/start/stat.list.start.control.ts -------------------------------------------------------------------------------- /app/pages/templates.ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/templates.ref.ts -------------------------------------------------------------------------------- /app/pages/templates/competitor.result.score.row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/templates/competitor.result.score.row.ts -------------------------------------------------------------------------------- /app/pages/templates/competitor.results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/templates/competitor.results.css -------------------------------------------------------------------------------- /app/pages/templates/competitor.results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pages/templates/competitor.results.ts -------------------------------------------------------------------------------- /app/pipes/dates/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pipes/dates/dates.ts -------------------------------------------------------------------------------- /app/pipes/orderBy/orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pipes/orderBy/orderBy.ts -------------------------------------------------------------------------------- /app/pipes/pipes.ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pipes/pipes.ref.ts -------------------------------------------------------------------------------- /app/pipes/score/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pipes/score/score.ts -------------------------------------------------------------------------------- /app/pipes/startGroup/startGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pipes/startGroup/startGroup.ts -------------------------------------------------------------------------------- /app/pipes/title/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/pipes/title/title.ts -------------------------------------------------------------------------------- /app/providers/leagues/clubCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/clubCache.ts -------------------------------------------------------------------------------- /app/providers/leagues/clubService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/clubService.ts -------------------------------------------------------------------------------- /app/providers/leagues/competitionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/competitionCache.ts -------------------------------------------------------------------------------- /app/providers/leagues/competitionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/competitionService.ts -------------------------------------------------------------------------------- /app/providers/leagues/competitorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/competitorService.ts -------------------------------------------------------------------------------- /app/providers/leagues/displayService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/displayService.ts -------------------------------------------------------------------------------- /app/providers/leagues/gradeCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/gradeCache.ts -------------------------------------------------------------------------------- /app/providers/leagues/gradeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/gradeService.ts -------------------------------------------------------------------------------- /app/providers/leagues/regionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/regionCache.ts -------------------------------------------------------------------------------- /app/providers/leagues/regionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/leagues/regionService.ts -------------------------------------------------------------------------------- /app/providers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/logger.ts -------------------------------------------------------------------------------- /app/providers/navHelper.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/providers/providers.ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/providers.ref.ts -------------------------------------------------------------------------------- /app/providers/routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/providers/routes/routes.ts -------------------------------------------------------------------------------- /app/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/references.d.ts -------------------------------------------------------------------------------- /app/router/remember-location-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/router/remember-location-strategy.ts -------------------------------------------------------------------------------- /app/theme/_app-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/_app-common.scss -------------------------------------------------------------------------------- /app/theme/_app-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/_app-variables.scss -------------------------------------------------------------------------------- /app/theme/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/_components.scss -------------------------------------------------------------------------------- /app/theme/app.android.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/theme/app.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/app.android.scss -------------------------------------------------------------------------------- /app/theme/app.ios.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/theme/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/app.ios.scss -------------------------------------------------------------------------------- /app/theme/button.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/theme/button.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/theme/colors.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/theme/components/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/components/icons.css -------------------------------------------------------------------------------- /app/theme/components/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/components/icons.scss -------------------------------------------------------------------------------- /app/theme/components/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/components/list.css -------------------------------------------------------------------------------- /app/theme/components/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/components/list.scss -------------------------------------------------------------------------------- /app/theme/components/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/components/nav.css -------------------------------------------------------------------------------- /app/theme/components/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/components/nav.scss -------------------------------------------------------------------------------- /app/theme/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/fonts.css -------------------------------------------------------------------------------- /app/theme/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/theme/fonts.scss -------------------------------------------------------------------------------- /app/theme/padding.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendor-platform.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/vendor-platform.android.ts -------------------------------------------------------------------------------- /app/vendor-platform.ios.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/app/vendor.ts -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/gruntfile.js -------------------------------------------------------------------------------- /hooks/after-prepare/nativescript-dev-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/hooks/after-prepare/nativescript-dev-sass.js -------------------------------------------------------------------------------- /hooks/before-livesync/nativescript-angular-sync.js: -------------------------------------------------------------------------------- 1 | module.exports = require("nativescript-angular/hooks/before-livesync"); 2 | -------------------------------------------------------------------------------- /hooks/before-prepare/nativescript-dev-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/hooks/before-prepare/nativescript-dev-sass.js -------------------------------------------------------------------------------- /hooks/before-prepare/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/hooks/before-prepare/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /hooks/before-watch/nativescript-dev-sass.js: -------------------------------------------------------------------------------- 1 | module.exports = require("nativescript-dev-sass/lib/watch.js"); 2 | -------------------------------------------------------------------------------- /hooks/before-watch/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/hooks/before-watch/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/package.json -------------------------------------------------------------------------------- /package.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/package.json.bak -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/references.d.ts -------------------------------------------------------------------------------- /screenshots/CompetitionList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/CompetitionList.png -------------------------------------------------------------------------------- /screenshots/RegionsPage-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/RegionsPage-drawer.png -------------------------------------------------------------------------------- /screenshots/RegionsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/RegionsPage.png -------------------------------------------------------------------------------- /screenshots/StartPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/StartPage.png -------------------------------------------------------------------------------- /screenshots/animation/load-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/animation/load-page.gif -------------------------------------------------------------------------------- /screenshots/animation/refresh-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/animation/refresh-page.gif -------------------------------------------------------------------------------- /screenshots/animation/refresh-pointless-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/animation/refresh-pointless-page.gif -------------------------------------------------------------------------------- /screenshots/card+refresh view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/card+refresh view.png -------------------------------------------------------------------------------- /screenshots/competitionPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/competitionPage.png -------------------------------------------------------------------------------- /screenshots/controls/sidebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/controls/sidebar.gif -------------------------------------------------------------------------------- /screenshots/pages/club-list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/pages/club-list.gif -------------------------------------------------------------------------------- /screenshots/pages/grade.page.competitor.results(minus ordering).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/pages/grade.page.competitor.results(minus ordering).png -------------------------------------------------------------------------------- /screenshots/pages/regions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/pages/regions.gif -------------------------------------------------------------------------------- /screenshots/pipes/groupBy+orderBy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/pipes/groupBy+orderBy.gif -------------------------------------------------------------------------------- /screenshots/style-bug/after-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/style-bug/after-nav.png -------------------------------------------------------------------------------- /screenshots/style-bug/before-nav_20160314015641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/screenshots/style-bug/before-nav_20160314015641.png -------------------------------------------------------------------------------- /tsconfig.aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/tsconfig.aot.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/tsconfig.json.bak -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/typings.json -------------------------------------------------------------------------------- /typings/dummy.ios.d.ts: -------------------------------------------------------------------------------- 1 | declare type UIRefreshControl = any; -------------------------------------------------------------------------------- /typings/main.d.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt4446/WhatsMyScore2-NativeScript/HEAD/webpack.config.js --------------------------------------------------------------------------------