Skip to content

Commit

Permalink
Exports fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Sep 25, 2017
1 parent d722595 commit 0213766
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demo/app/main-page.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded" class="page" xmlns:AR="nativescript-ar">
<GridLayout rows="auto, *" columns="*">
<Label text="{{ message }}" class="t-20 text-center c-black" textWrap="true"/>
<Label text="{{ message }}" class="t-20 p-10 text-center c-black" textWrap="true"/>
<AR:AR
row="1"
debugLevel="FEATURE_POINTS"
Expand Down
2 changes: 1 addition & 1 deletion demo/app/main-view-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class HelloWorldModel extends Observable {
super();

const supported = AR.isSupported();
this.message = `Supported? ${supported}`;
this.message = `AR supported? ${supported}`;

if (!supported) {
return;
Expand Down
1 change: 1 addition & 0 deletions src/.npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.ts
*.map
!ar.android.d.ts
!ar.ios.d.ts
!ar-common.d.ts
Expand Down

0 comments on commit 0213766

Please sign in to comment.