Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VSCode Schulung
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Schwertgen
VSCode Schulung
Compare revisions
d3889d28819ab219ed3396a56ec86b19aa50e5c9 to bd0bf2d34862c7b4602cf15379b89d6c22a1d947
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
david.schwertgen/vscode-schulung
Select target project
No results found
bd0bf2d34862c7b4602cf15379b89d6c22a1d947
Select Git revision
Branches
feature/buttons
feature/playerScore
main
Swap
Target
david.schwertgen/vscode-schulung
Select target project
david.schwertgen/vscode-schulung
1 result
d3889d28819ab219ed3396a56ec86b19aa50e5c9
Select Git revision
Branches
feature/buttons
feature/playerScore
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add index.js
· 050c8ea1
Sarah Fiedler
authored
2 months ago
050c8ea1
really add index.js
· bd0bf2d3
Sarah Fiedler
authored
2 months ago
bd0bf2d3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
game/index.html
+1
-0
1 addition, 0 deletions
game/index.html
game/index.js
+6
-0
6 additions, 0 deletions
game/index.js
game/styles.css
+1
-1
1 addition, 1 deletion
game/styles.css
with
8 additions
and
1 deletion
game/index.html
View file @
bd0bf2d3
...
...
@@ -42,4 +42,5 @@
</main>
</body>
<script
src=
"./index.js"
></script>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
game/index.js
0 → 100644
View file @
bd0bf2d3
const
options
=
[
"
Stein
"
,
"
Papier
"
,
"
Schere
"
];
function
getRandomComputerResult
(){
console
.
log
(
Math
.
random
());
}
getRandomComputerResult
();
\ No newline at end of file
This diff is collapsed.
Click to expand it.
game/styles.css
View file @
bd0bf2d3
...
...
@@ -41,7 +41,7 @@ h1 {
cursor
:
pointer
;
width
:
100px
;
margin
:
10px
;
color
:
var
(
--very-dark-blue
)
;
color
:
black
;
background-color
:
var
(
--yellow
);
padding
:
5px
10px
;
border-color
:
var
(
--golden-yellow
);
...
...
This diff is collapsed.
Click to expand it.