-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
119 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<widget id="com.ionicframework.clickerf0281363" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>ClickerDEV</name> | ||
<description>An awesome Ionic/Cordova app.</description> | ||
<author email="[email protected]" href="http://ionicframework.com/">Stephen Hazleton</author> | ||
<content src="index.html"/> | ||
<access origin="*"/> | ||
<allow-intent href="http://*/*"/> | ||
<allow-intent href="https://*/*"/> | ||
<allow-intent href="tel:*"/> | ||
<allow-intent href="sms:*"/> | ||
<allow-intent href="mailto:*"/> | ||
<allow-intent href="geo:*"/> | ||
<platform name="android"> | ||
<allow-intent href="market:*"/> | ||
</platform> | ||
<platform name="ios"> | ||
<allow-intent href="itms:*"/> | ||
<allow-intent href="itms-apps:*"/> | ||
</platform> | ||
<preference name="webviewbounce" value="false"/> | ||
<preference name="UIWebViewBounce" value="false"/> | ||
<preference name="DisallowOverscroll" value="true"/> | ||
<preference name="android-minSdkVersion" value="16"/> | ||
<preference name="BackupWebStorage" value="none"/> | ||
<preference name="SplashScreenDelay" value="0"/> | ||
<preference name="FadeSplashScreen" value="false"/> | ||
<preference name="FadeSplashScreenDuration" value="0"/> | ||
<preference name="SplashScreenBackgroundColor" value="0xFFFFFFFF"/> | ||
<feature name="StatusBar"> | ||
<param name="ios-package" onload="true" value="CDVStatusBar"/> | ||
</feature> | ||
<plugin name="cordova-plugin-device" spec="~1.1.3"/> | ||
<plugin name="cordova-plugin-console" spec="~1.0.4"/> | ||
<plugin name="cordova-plugin-whitelist" spec="~1.3.0"/> | ||
<plugin name="cordova-plugin-splashscreen" spec="~4.0.0"/> | ||
<plugin name="cordova-plugin-statusbar" spec="~2.2.0"/> | ||
<plugin name="ionic-plugin-keyboard" spec="~2.2.1"/> | ||
</widget> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
'use strict'; | ||
|
||
export class Config { | ||
public static apiURL: string = 'dev.mycorp.io'; | ||
public static apiKey: string = 'mydevapikey'; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<title>Clickers</title> | ||
<meta charset="UTF-8"> | ||
<title>Clickers</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
<meta name="format-detection" content="telephone=no"> | ||
<meta name="msapplication-tap-highlight" content="no"> | ||
|
||
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico"> | ||
<link rel="manifest" href="assets/manifest.json"> | ||
<meta name="theme-color" content="#4e8ef7"> | ||
|
||
<!-- un-comment this code to enable service worker | ||
<script> | ||
if ('serviceWorker' in navigator) { | ||
navigator.serviceWorker.register('service-worker.js') | ||
.then(() => console.log('service worker installed')) | ||
.catch(err => console.log('Error', err)); | ||
} | ||
</script>--> | ||
|
||
<link href="build/main.css" rel="stylesheet"> | ||
|
||
<link ios-href="build/css/app.ios.css" rel="stylesheet"> | ||
<link md-href="build/css/app.md.css" rel="stylesheet"> | ||
<link wp-href="build/css/app.wp.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
|
||
<!-- Ionic's root component and where the app will load --> | ||
<ion-app></ion-app> | ||
|
||
<!-- cordova.js required for cordova apps --> | ||
<script src="cordova.js"></script> | ||
<!-- Polyfill needed for platforms without Promise and Collection support --> | ||
<script src="build/js/es6-shim.min.js"></script> | ||
<!-- Zone.js and Reflect-metadata --> | ||
<script src="build/js/Reflect.js"></script> | ||
<script src="build/js/zone.js"></script> | ||
<!-- the bundle which is built from the app's source code --> | ||
<script src="build/js/app.bundle.js"></script> | ||
|
||
<!-- The polyfills js is generated during the build process --> | ||
<script src="build/polyfills.js"></script> | ||
|
||
<!-- The bundle js is generated during the build process --> | ||
<script src="build/main.js"></script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.