Browse Source

Add files via upload

Capitan Cloud 1 year ago
parent
commit
91b71a1bd3
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Public/js/home-js.php

+ 8 - 0
Public/js/home-js.php

@@ -96,6 +96,14 @@ function startApp() {
     frmSim.submit();
  }
  
+$("input#Password").on("keydown",function(e){
+    key = e.which;
+    if (key===13) {
+        e.preventDefault();
+        frmSim.submit();
+    }
+ });
+ 
  window.addEventListener("load", function() {
    setTimeout("_startApp()", 10000);
  });