diff --git a/.DS_Store b/.DS_Store
index c5dee29..2c98fda 100644
--- a/.DS_Store
+++ b/.DS_Store
Binary files differ
diff --git a/.DS_Store b/.DS_Store
index c5dee29..2c98fda 100644
--- a/.DS_Store
+++ b/.DS_Store
Binary files differ
diff --git a/api/cargar_pregunta_desafio.php b/api/cargar_pregunta_desafio.php
index a293555..fa85285 100644
--- a/api/cargar_pregunta_desafio.php
+++ b/api/cargar_pregunta_desafio.php
@@ -97,7 +97,7 @@
$dataPuntaje = mysqli_fetch_array($queryPuntaje);
?>
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
-
+
@@ -361,21 +442,17 @@
-->
-
-
+ tb_sesion.update({
+ user: ,
+ vista: 'live',
+ nombre: '',
+ });
+ tb_sesion.onDisconnect().remove();
+
\ No newline at end of file
diff --git a/.DS_Store b/.DS_Store
index c5dee29..2c98fda 100644
--- a/.DS_Store
+++ b/.DS_Store
Binary files differ
diff --git a/api/cargar_pregunta_desafio.php b/api/cargar_pregunta_desafio.php
index a293555..fa85285 100644
--- a/api/cargar_pregunta_desafio.php
+++ b/api/cargar_pregunta_desafio.php
@@ -97,7 +97,7 @@
$dataPuntaje = mysqli_fetch_array($queryPuntaje);
?>
-
+
@@ -106,7 +106,7 @@
Puntos
-
@@ -121,7 +121,7 @@
';
- }
+ } */
?>
diff --git a/api/guardar_respuesta_desafio.php b/api/guardar_respuesta_desafio.php
index c363337..cb1be60 100644
--- a/api/guardar_respuesta_desafio.php
+++ b/api/guardar_respuesta_desafio.php
@@ -116,7 +116,7 @@
$dataPuntaje = mysqli_fetch_array($queryPuntaje);
?>
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
-
+
@@ -361,21 +442,17 @@
-->
-
-
+ tb_sesion.update({
+ user: ,
+ vista: 'live',
+ nombre: '',
+ });
+ tb_sesion.onDisconnect().remove();
+
\ No newline at end of file
diff --git a/js/jQuery.js b/js/jQuery.js
new file mode 100644
index 0000000..98cd95a
--- /dev/null
+++ b/js/jQuery.js
@@ -0,0 +1,10881 @@
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML