Estructuras_de_Datos/edd.html

44 lines
978 B
HTML
Raw Permalink Normal View History

2016-07-10 15:31:15 -04:00
<html>
<title>Estructuras de Datos</title>
<head>
2016-08-15 22:55:02 -03:00
<script src="https://java.com/js/dtjava.js"></script>
2016-08-14 20:38:30 -03:00
<script>window.dtjava || document.write('<script src="dtjava.js"><\/script>')</script>
2016-07-10 15:31:15 -04:00
<script>
function launchApplication(jnlpfile) {
dtjava.launch( {
url : jnlpfile
},
{
javafx : '8.0+'
},
{}
);
return false;
}
</script>
<script>
function javafxEmbedEstructuras_de_Datos_id() {
dtjava.embed(
{
id : 'Estructuras_de_Datos_id',
url : 'Estructuras_de_Datos.jnlp',
placeholder : 'javafx-app-placeholder',
width : '1024',
height : '768'
},
{
javafx : '8.0+'
},
{}
);
}
<!-- Embed FX application into web page once page is loaded -->
dtjava.addOnloadCallback(javafxEmbedEstructuras_de_Datos_id);
</script>
</head>
<body>
<!-- Applet will be inserted here -->
<div id='javafx-app-placeholder'></div>
</body>
</html>