Skip to content

Commit

Permalink
id3
Browse files Browse the repository at this point in the history
  • Loading branch information
Macro21 committed Apr 1, 2018
1 parent 3c52d15 commit 0c85775
Show file tree
Hide file tree
Showing 8 changed files with 2,527 additions and 22 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// Utilizar IntelliSense para aprender acerca de los posibles atributos.
// Mantenga el puntero para ver las descripciones de los existentes atributos
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Extensión de inicio",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm"
},
{
"type": "node",
"request": "launch",
"name": "Iniciar programa",
"program": "${workspaceFolder}/Practica 2\\public\\javascripts\\index.js"
}
]
}
5 changes: 4 additions & 1 deletion Practica 2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<script src = "public/javascripts/bootstrap.bundle.js" type="text/javascript" ></script>
<script src = "public/javascripts/bootstrap.js" type="text/javascript" ></script>
<script src = "public/javascripts/bootstrap.js.map" type="text/map" ></script>
<script src = "public/javascripts/Treant.js"></script>
<script src = "public/javascripts/raphael.js"></script>
<!--Bootstrap css -->
<link rel='stylesheet' href='public/stylesheets/bootstrap-grid.css' />
<link href='public/stylesheets/bootstrap-grid.css.map' />
Expand All @@ -19,6 +21,7 @@
<link rel='stylesheet' href='public/stylesheets/bootstrap.css' />
<link href='public/stylesheets/bootstrap.css.map' />
<link href= 'public/stylesheets/datatables.min.css' />
<link rel="stylesheet" href="public/stylesheets/Treant.css" type="text/css"/>
<!--My scripts -->
<script src = "public/javascripts/reader.js" type="text/javascript" ></script>
<script src = "public/javascripts/index.js" type="text/javascript" ></script>
Expand All @@ -40,7 +43,7 @@ <h3 id = "name">Andrei Ionut Vaduva</h3>
<input type="file" id = "attrFile" onchange="attributesReader(event)">
</div>
<hr class = "hrStyle"></hr>
<div id = "table"></div>

</div>
</body>

Expand Down
Loading

0 comments on commit 0c85775

Please sign in to comment.