File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ import application = require("application");
22application . mainModule = "main-page" ;
33
44// Remove this in the AppBuilder templates
5- application . cssFile = "./app.css"
5+ application . cssFile = "./app.css" ;
66
77application . start ( ) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export function gridViewItemTap(args: gridView.GridItemEventData) {
2424}
2525
2626export function gridViewItemLoading ( args : gridView . GridItemEventData ) {
27- console . log ( "item loading " + args . index . toString ( ) )
27+ console . log ( "item loading " + args . index . toString ( ) ) ;
2828}
2929
3030export function gridViewLoadMoreItems ( args : observable . EventData ) {
Original file line number Diff line number Diff line change 33 typeScriptSrc : [
44 "**/*.ts" ,
55 "!node_modules/**/*.*" ,
6- "!sample /**/*.*" ,
6+ "!demo /**/*.*" ,
77 "!bin/**/*.*"
88 ] ,
99 typeScriptDeclarations :[
1010 "**/*.d.ts" ,
1111 "!references.d.ts" ,
12- "!sample /**/*.*" ,
12+ "!demo /**/*.*" ,
1313 "!node_modules/**/*.*" ,
1414 "!bin/**/*.*"
1515 ] ,
Original file line number Diff line number Diff line change 1313 },
1414 "exclude" : [
1515 " node_modules" ,
16- " sample " ,
16+ " demo " ,
1717 " bin"
1818 ]
1919}
You can’t perform that action at this time.
0 commit comments