-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more fixes - full implementation - documentation WIP
- Loading branch information
tomvardacsa
committed
Aug 18, 2017
1 parent
2a9b3ee
commit 7a72cc9
Showing
35 changed files
with
10,130 additions
and
768 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ demo/platforms | |
demo/node_modules | ||
node_modules | ||
publish/src | ||
publish/package | ||
publish/package |
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,4 @@ | ||
{ | ||
"prepareTime": "Fri Aug 11 2017 00:52:11 GMT+0100 (WEST)", | ||
"buildTime": "Fri Aug 11 2017 00:59:16 GMT+0100 (WEST)" | ||
} |
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,2 +1,2 @@ | ||
import * as application from 'tns-core-modules/application'; | ||
application.start({ moduleName: "main-page" }); | ||
application.start({ moduleName: 'main-page' }); |
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
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,11 +1,7 @@ | ||
import { Observable } from "tns-core-modules/data/observable"; | ||
import { Observable } from 'tns-core-modules/data/observable'; | ||
|
||
export class HelloWorldModel extends Observable { | ||
|
||
|
||
constructor() { | ||
super(); | ||
} | ||
|
||
|
||
} |
Oops, something went wrong.