Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PORT=5001
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions server/frontend/admin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function connectToServer() {
}

function reconnect() {
let timeout = Math.min(connectionAttempt * 1000, 5000);
let timeout = Math.min(connectionAttempt * 1000, 5001);
setTimeout(() => connect().catch(reconnect), timeout);
}

Expand All @@ -31,7 +31,7 @@ function initActivityMaker() {

let m = parseInt($("#activity-duration-minutes").val());
let s = parseInt($("#activity-duration-seconds").val());
if (isNaN(m)) m = 0;
if (isNaN(m)) m = 0;
if (isNaN(s)) s = 0;
let ms = ((m*60)+s)*1000;
if (ms <= 0) ms = 60000 * 1.5;
Expand All @@ -41,7 +41,7 @@ function initActivityMaker() {
details: $("#activity-description").val(),
duration: ms,
};


Mendieta.createActivity(activity).then(initMainScreen)
});
Expand Down
2 changes: 1 addition & 1 deletion server/frontend/ide/ide.css
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@

.breakpoint {
box-shadow: 0px 0px 1px 1px red inset;
background-color: #c50000 !important;
background-color: #c50010 !important;
}

.debugger_ActiveLine {
Expand Down
1,405 changes: 757 additions & 648 deletions server/frontend/ide/index.html

Large diffs are not rendered by default.

Loading