Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit d1deb93

Browse files
author
mattpass
committed
Minor tweaks
1 parent e4a5215 commit d1deb93

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

assets/js/icecoder.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3449,14 +3449,15 @@ var ICEcoder = {
34493449
// Save as events need to send all contents
34503450
if (this.serverQueueItems[0].item.indexOf('action=saveAs')>0) {
34513451
xhr.send('timeStart='+timeStart+'&file='+this.serverQueueItems[0].file+'&contents='+encodeURIComponent(document.getElementById('saveTemp1').value));
3452-
// Save evens can just sent the changes
3452+
// Save events can just send the changes
34533453
} else if (this.serverQueueItems[0].item.indexOf('action=save')>0) {
34543454
xhr.send('timeStart='+timeStart+'&file='+this.serverQueueItems[0].file+'&changes='+encodeURIComponent(document.getElementById('saveTemp1').value));
3455-
// Another type of event
3455+
// Another type of event
34563456
} else {
34573457
xhr.send('timeStart='+timeStart+'&file='+this.serverQueueItems[0].file);
34583458
}
34593459
} else {
3460+
// File loading done via fileControl iFrame
34603461
setTimeout(function(ic) {
34613462
if ("undefined" != typeof ic.serverQueueItems[0]) {
34623463
ic.filesFrame.contentWindow.frames['fileControl'].location.href=ic.serverQueueItems[0].item;

terminal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
2-
include("lib/headers.php");
3-
include("lib/settings.php");
2+
include "lib/headers.php";
3+
include "lib/settings.php";
44
?>
55
<!DOCTYPE html>
66
<html lang="en">

0 commit comments

Comments
 (0)