Skip to content

Commit fb9cb10

Browse files
authored
SDK-A 8.7 improved deployment (#82)
Some minor fixes made to improve ease of deployment. index.html now using <base href="/"> in all 3 SDKs. Deployments to other locations will need to update index.html and value of APP_BASE_HREF in src/app/app.module.ts
1 parent 84c76a2 commit fb9cb10

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/app/_samples/mashup/main-screen/main-screen.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
We need to gather a little information about you.
2424
</div>
2525
<div>
26-
<img src="../constellation/assets/cableinfo.png" class="mc-info-image">
26+
<img src="constellation/assets/cableinfo.png" class="mc-info-image">
2727
</div>
2828

2929
</div>

src/app/_samples/mashup/main-screen/main-screen.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class MainScreenComponent implements OnInit {
3939
this.PCore$ = window.PCore;
4040
}
4141

42-
this.cableInfo$ = "../constellation/assets/cableinfo.png";
42+
this.cableInfo$ = "constellation/assets/cableinfo.png";
4343

4444
// first
4545

src/app/_samples/mashup/resolution-screen/resolution-screen.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</div>
1212
</div>
1313
<div>
14-
<img src="../constellation/assets/cablechat.png" class="mc-chat-image">
14+
<img src="constellation/assets/cablechat.png" class="mc-chat-image">
1515
<button class="mc-chat-button" >Chat Now</button>
1616
</div>
1717
</div>

src/app/_samples/mashup/resolution-screen/resolution-screen.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
.mc-body {
2525
font-size: 24px;
26+
line-height: 1.2em;
2627
border: 1px solid #B00B55;
2728
padding: 30px;
2829
}

0 commit comments

Comments
 (0)