Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TDDD97-Webprog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Oliver Green
TDDD97-Webprog
Commits
c33333b4
Commit
c33333b4
authored
2 years ago
by
Gustav Elmqvist
Browse files
Options
Downloads
Patches
Plain Diff
Initial commit
parents
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+3
-0
3 additions, 0 deletions
README.md
client.html
+10
-0
10 additions, 0 deletions
client.html
client.js
+10
-0
10 additions, 0 deletions
client.js
with
23 additions
and
0 deletions
README.md
0 → 100644
+
3
−
0
View file @
c33333b4
# Web Programming laborations
This repo contains the laborations in the course TDDD97 done by Gustav and Oliver.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
client.html
0 → 100644
+
10
−
0
View file @
c33333b4
<html>
<head>
<link
href=
"client.css"
type=
"text/css"
rel=
"stylesheet"
>
<script
src=
"client.js"
type=
"text/javascript"
></script>
<script
src=
"serverstub.js"
type=
"text/javascript"
></script>
</head>
<body>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
client.js
0 → 100644
+
10
−
0
View file @
c33333b4
displayView
=
function
()
{
// the code required to display a view
};
window
.
onload
=
function
()
{
// code that is executed as the page is loaded.
// You shall put your own custom code here.
// window alert() is not allowed to be used in your implementation.
window
.
alert
(
"
Hello TDDD97!
"
);
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment