Skip to content

Commit

Permalink
actualizacion
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanDDY committed Oct 22, 2023
1 parent a221692 commit b713dc6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 53 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="lib/style.css"/>
<link rel="stylesheet" href="lib/style.css"/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
Expand All @@ -13,7 +13,7 @@
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>

<script type="module" src="./lib/index.js"></script>
<script type="module" src="./lib/index.ts"></script>
<title>TV series</title>
</head>
<body>
Expand All @@ -30,7 +30,7 @@

<div class="container">
<div class="row">
<div class="col-lg-6 col-12">
<div class="col-lg-7 col-12">
<table class="table table-striped" id="tablaSeries">
<thead>
<tr>
Expand All @@ -40,7 +40,7 @@
<th scope="col">Seasons</th>
</tr>
</thead>
<tbody>
<tbody id="cuerpo-Series">
</tbody>
</table>
<p id="averageSeasons">Average seasons: 0</p>
Expand Down
15 changes: 0 additions & 15 deletions lib/Serie.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/data.js

This file was deleted.

21 changes: 0 additions & 21 deletions lib/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { series } from './data.js';

const tabla: HTMLElement | null = document.querySelector('.table tbody');
const tabla: HTMLElement | null = document.querySelector('.cuerpo-Series');

if (tabla) {
series.forEach((serie) => {
Expand Down

0 comments on commit b713dc6

Please sign in to comment.