Skip to content

Commit 405c629

Browse files
committed
dumb demo
1 parent ec0411f commit 405c629

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+508
-0
lines changed

dumbdelaydemo/.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
10+
# We recommend you to keep these unchanged
11+
end_of_line = lf
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

dumbdelaydemo/.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
*.log
7+
*.tmp
8+
*.tmp.*
9+
log.txt
10+
*.sublime-project
11+
*.sublime-workspace
12+
.vscode/
13+
npm-debug.log*
14+
15+
.idea/
16+
.sass-cache/
17+
.tmp/
18+
.versions/
19+
coverage/
20+
dist/
21+
node_modules/
22+
tmp/
23+
temp/
24+
hooks/
25+
platforms/
26+
plugins/
27+
plugins/android.json
28+
plugins/ios.json
29+
www/
30+
$RECYCLE.BIN/
31+
32+
.DS_Store
33+
Thumbs.db
34+
UserInterfaceState.xcuserstate

dumbdelaydemo/config.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<widget id="com.ionicframework.dumbdelaydemo788627" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3+
<name>dumbdelaydemo</name>
4+
<description>An awesome Ionic/Cordova app.</description>
5+
<author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author>
6+
<content src="index.html"/>
7+
<access origin="*"/>
8+
<allow-navigation href="http://ionic.local/*"/>
9+
<allow-intent href="http://*/*"/>
10+
<allow-intent href="https://*/*"/>
11+
<allow-intent href="tel:*"/>
12+
<allow-intent href="sms:*"/>
13+
<allow-intent href="mailto:*"/>
14+
<allow-intent href="geo:*"/>
15+
<platform name="android">
16+
<allow-intent href="market:*"/>
17+
</platform>
18+
<platform name="ios">
19+
<allow-intent href="itms:*"/>
20+
<allow-intent href="itms-apps:*"/>
21+
</platform>
22+
<preference name="webviewbounce" value="false"/>
23+
<preference name="UIWebViewBounce" value="false"/>
24+
<preference name="DisallowOverscroll" value="true"/>
25+
<preference name="android-minSdkVersion" value="16"/>
26+
<preference name="BackupWebStorage" value="none"/>
27+
<preference name="SplashMaintainAspectRatio" value="true"/>
28+
<preference name="FadeSplashScreenDuration" value="300"/>
29+
<preference name="SplashShowOnlyFirstTime" value="false"/>
30+
<feature name="StatusBar">
31+
<param name="ios-package" onload="true" value="CDVStatusBar"/>
32+
</feature>
33+
<plugin name="ionic-plugin-keyboard" spec="~2.2.1"/>
34+
<plugin name="cordova-plugin-whitelist" spec="1.3.1"/>
35+
<plugin name="cordova-plugin-console" spec="1.0.5"/>
36+
<plugin name="cordova-plugin-statusbar" spec="2.2.1"/>
37+
<plugin name="cordova-plugin-device" spec="1.1.4"/>
38+
<plugin name="cordova-plugin-splashscreen" spec="~4.0.1"/>
39+
</widget>

dumbdelaydemo/ionic.config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "dumbdelaydemo",
3+
"app_id": "",
4+
"v2": true,
5+
"typescript": true
6+
}

dumbdelaydemo/package.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "ionic-hello-world",
3+
"author": "Ionic Framework",
4+
"homepage": "http://ionicframework.com/",
5+
"private": true,
6+
"scripts": {
7+
"clean": "ionic-app-scripts clean",
8+
"build": "ionic-app-scripts build",
9+
"ionic:build": "ionic-app-scripts build",
10+
"ionic:serve": "ionic-app-scripts serve"
11+
},
12+
"dependencies": {
13+
"@angular/common": "4.0.0",
14+
"@angular/compiler": "4.0.0",
15+
"@angular/compiler-cli": "4.0.0",
16+
"@angular/core": "4.0.0",
17+
"@angular/forms": "4.0.0",
18+
"@angular/http": "4.0.0",
19+
"@angular/platform-browser": "4.0.0",
20+
"@angular/platform-browser-dynamic": "4.0.0",
21+
"@ionic-native/core": "3.4.2",
22+
"@ionic-native/splash-screen": "3.4.2",
23+
"@ionic-native/status-bar": "3.4.2",
24+
"@ionic/storage": "2.0.1",
25+
"ionic-angular": "3.0.1",
26+
"ionicons": "3.0.0",
27+
"rxjs": "5.1.1",
28+
"sw-toolbox": "3.4.0",
29+
"zone.js": "^0.8.4"
30+
},
31+
"devDependencies": {
32+
"@ionic/app-scripts": "1.3.0",
33+
"typescript": "~2.2.1"
34+
},
35+
"cordovaPlugins": [
36+
"cordova-plugin-whitelist",
37+
"cordova-plugin-console",
38+
"cordova-plugin-statusbar",
39+
"cordova-plugin-device",
40+
"cordova-plugin-splashscreen",
41+
"ionic-plugin-keyboard"
42+
],
43+
"cordovaPlatforms": [],
44+
"description": "dumbdelaydemo: An Ionic project"
45+
}
2.81 KB
1.13 KB
1.76 KB
4.22 KB
7.61 KB

0 commit comments

Comments
 (0)