8000 Fix the style paths of the template apps · Techhacker/NativeScript@27a20f5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 27a20f5

Browse files
committed
Fix the style paths of the template apps
1 parent 311cd04 commit 27a20f5

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

apps/TelerikNEXT/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
application.mainModule = "main-page";
55

66
// TODO: This is only neede because of the deply script.
7-
application.cssFile = "app/TelerikNEXT/app.css";
7+
application.cssFile = "./app.css";
88

99
// Start the application
1010
application.start();

apps/paylocity/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import application = require("application");
22

33
application.mainModule = "login";
4-
application.cssFile = "paylocity/style.css";
4+
application.cssFile = "./style.css";
55

66
application.start();

apps/template-blank/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
application.mainModule = "main-page";
33

44
// Remove this in the AppBuilder templates
5-
application.cssFile = "template-blank/app.css"
5+
application.cssFile = "./app.css"
66

77
application.start();

apps/template-hello-world/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
application.mainModule = "main-page";
33

44
// Remove this in the AppBuilder templates
5-
application.cssFile = "app.css"
5+
application.cssFile = "./app.css"
66

77
application.start();

apps/template-master-detail/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
application.mainModule = "main-page";
33

44
// Remove this in the AppBuilder templates
5-
application.cssFile = "app.css"
5+
application.cssFile = "./app.css"
66

77
application.start();

apps/template-settings/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import application = require("application");
22

33
// Remove this in the AppBuilder templates
4-
application.cssFile = "template-settings/app.css"
4+
application.cssFile = "./app.css"
55

66
application.mainModule = "main-page";
77
application.start();

apps/template-tab-navigation/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
application.mainModule = "main-page";
33

44
// Remove this in the AppBuilder templates
5-
application.cssFile = "template-tab-navigation/app.css"
5+
application.cssFile = "./app.css"
66

77
application.start();

0 commit comments

Comments
 (0)
0