Skip to content

Commit 7fbf678

Browse files
committed
fixed signin, still having heap issue
1 parent 0f3a9c6 commit 7fbf678

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

bin/deploydebug.bin

131 KB
Binary file not shown.

src/webh/esprfid.js.gz.h

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

src/websocket.esp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#define MAX_WS_BUFFER 2048
22

3-
char wsBuffer[MAX_WS_BUFFER];
4-
53
struct WsMessage
64
{
75
char *serializedMessage;

src/websrc/process/final/esprfid.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
3 Bytes
Binary file not shown.

src/websrc/ui/esprfid.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2416,15 +2416,15 @@ function start() {
24162416
esprfidcontent.id = "mastercontent";
24172417
esprfidcontent.style.display = "none";
24182418
document.body.appendChild(esprfidcontent);
2419-
$("#signin").on("shown.bs.modal", function () {
2419+
$("#signin").on("shown.bs.modal", function() {
24202420
$("#password").focus().select();
24212421
});
2422-
$("#mastercontent").load("esprfid.htm", function (responseTxt, statusTxt, xhr) {
2422+
$("#mastercontent").load("esprfid.htm", function(responseTxt, statusTxt, xhr) {
24232423
if (statusTxt === "success") {
24242424
$("#signin").modal({
24252425
backdrop: "static",
24262426
keyboard: false
2427-
});
2427+
}).modal('show');
24282428
$("[data-toggle=\"popover\"]").popover({
24292429
container: "body"
24302430
});

0 commit comments

Comments
 (0)