Skip to content

Commit

Permalink
fix(app): adjust trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerd Müller committed Jun 30, 2020
1 parent 3466583 commit c96bd74
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/demol/src/app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@
{
"type": "text",
"option": "third",
"value": "Um einen Gegenstand einzupacken, ziehe ihn direkt auf den Rucksack.Wenn du fertig gepackt hast, kommst du zum nächsten Kapitel."
"value": "Um einen Gegenstand einzupacken, ziehe ihn direkt auf den Rucksack. Wenn du fertig gepackt hast, kommst du zum nächsten Kapitel."
},
{
"type": "suitcase",
Expand Down
2 changes: 1 addition & 1 deletion libs/home/src/lib/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const home:ChapterProps = {
"option": "link",
"value": "Diese Website entstand im Rahmen des <a href='https://codingdavinci.de/' target='_blank' rel='noopener noreferrer'>Coding da Vinci Stipendiums</a> zwischen April und Juni 2020. Die Fotografien und Bildkärtchen wurden vom <a href='https://arbeiterjugend.de/' target='_blank' rel='noopener noreferrer'>Archiv der Arbeiterjugendbewegung</a> unter einer CC BY-SA 3.0 DE Lizenz zur Verfügung gestellt. Genutzt wurden zudem Sounds aus der Sammlung des <a href='http://www.soundsofchanges.eu/' target='_blank' rel='noopener noreferrer'>Sounds of Changes</a> Projektes (CC BY 4.0 Lizenz), der <a href='https://www.hoerspielbox.de/' target='_blank' rel='noopener noreferrer'>Hörspielbox</a> sowie dem <a href='http://bbcsfx.acropolis.org.uk/' target='_blank' rel='noopener noreferrer'>BBC Sound Effects</a> Archiv. Genutzt ildmaterial von <a href='https://commons.wikimedia.org' target='_blank' rel='noopener noreferrer'>Wikimedia Commons</a>."
},
{
{
"type": "text",
"value":"Der Quellcode läuft unter einer MIT license. Die eigens für das Projekt erstellten Mediendateien sind unter einer CC BY-SA 3.0 Lizenz veröffentlicht."
}]
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/src/lib/text/text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ p {
position: absolute;
left: 0;
bottom: -3px;
transform-origin: left;
transform-origin: left;
transform: scale(0);
transition: 0.5s linear;
}
Expand Down
4 changes: 2 additions & 2 deletions libs/ui/src/lib/tictactoe/tictactoe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ export const TicTacToe = (props: TicTacToeProps) => {
))}
</div>
<div className='result'>{getStatus()}</div>
{winner === "X" && <Sound url={`./assets/sounds/game_won.mp3`} playStatus={playStatus}
{winner === "X" && <Sound url={`./assets/sounds/game_won.mp3`} playStatus={playStatus}
onFinishedPlaying={() => setPlayStatus(Sound.status.STOPPED)} />}
{winner === "O" && <Sound url={`./assets/sounds/game_lost.mp3`} playStatus={playStatus}
{winner === "O" && <Sound url={`./assets/sounds/game_lost.mp3`} playStatus={playStatus}
onFinishedPlaying={() => setPlayStatus(Sound.status.STOPPED)} />}
</div>
);
Expand Down

0 comments on commit c96bd74

Please sign in to comment.