jquery foundation

This commit is contained in:
rob 2019-07-14 19:40:34 +02:00
parent 0c916a25b1
commit 949c45adb5
4 changed files with 20 additions and 3 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
src/

View File

@ -5,12 +5,21 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="js/import.js"></script>
<title>Datenspuren Wegweise</title>
<title>Datenspuren Wegweiser</title>
</head>
<body>
<h1>Hello, world!</h1>
<h1>Datenspuren Wegweiser</h1>
<h2>Plan: <span id="scheduleName"></span></h2>
<script>
$.when( $.ready ).then(function() {
var s = new schedule();
$('#scheduleName').html( s.getSchedule() );
})
</script>
</body>
</html>

View File

@ -1 +1,6 @@
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
var schedule = class {
getSchedule = function(){
return "fahrplan";
}
}

2
js/jquery-3.4.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long