This repository was archived by the owner on Dec 14, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1441,7 +1441,7 @@ var ICEcoder = {
14411441 } ;
14421442 // For each line in editor
14431443 this . getThisCM ( ) . eachLine ( function ( line ) {
1444- // The number we're seeking if greater than prev linees we've considered plus this line
1444+ // The number we're seeking if greater than prev lines we've considered plus this line
14451445 if ( num > ICEcoder . charPos . len + ( line . text + "\n" ) . length ) {
14461446 // Increment line
14471447 ICEcoder . charPos . thisLine ++ ;
@@ -3383,7 +3383,7 @@ var ICEcoder = {
33833383 get ( 'saveTemp' + nextSaveID ) . value = cM . getValue ( ) ;
33843384 // Else we can save the JSON version of the changes to implement
33853385 } else {
3386- get ( 'saveTemp' + nextSaveID ) . value = this . serverQueueItems [ 0 ] . changes ;
3386+ get ( 'saveTemp' + nextSaveID ) . value = changes ;
33873387 }
33883388 }
33893389 } else if ( action == "del" ) {
Original file line number Diff line number Diff line change 5555echo "default " === $ ICEcoder ["theme " ] ? 'icecoder.css ' : $ ICEcoder ["theme " ] . '.css ' ;
5656echo "?microtime= " .microtime (true );
5757?> ">
58- <link rel="icon" type="image/png" href="assets/images/favicon.png">
58+ <link rel="icon" type="image/png" href="<?php echo $ iceURLPath ; ?> / assets/images/favicon.png">
5959<script>
6060iceRoot = "<?php echo $ ICEcoder ['root ' ]; ?> ";
6161
Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ function showButton() {
421421
422422function showHideTabs() {
423423 let cMCSS = document.styleSheets[2];
424- cMCSS.rules ? strCSS = 'rules' : strCSS = 'cssRules';
424+ let strCSS = cMCSS.rules ? 'rules' : 'cssRules';
425425 cMCSS[strCSS][2].style['border-left-width'] = document.settings.visibleTabs.checked ? '1px' : '0';
426426 cMCSS[strCSS][2].style['margin-left'] = document.settings.visibleTabs.checked ? '-1px' : '0';
427427}
Original file line number Diff line number Diff line change 6464 responseJSON = JSON.parse(responseText);
6565 newOutput.innerHTML = responseJSON.output;
6666 document.getElementById("user").innerHTML = "  " + responseJSON.user + " ";
67- document.getElementById("user").innerHTML = "  " + responseJSON.user + " ";
6867 document.getElementById("cwd").innerHTML = " " + responseJSON.cwd + " ";
6968 var cmdElem = document.getElementById("commandLine");
7069 cmdElem.parentNode.insertBefore(newOutput, cmdElem);
You can’t perform that action at this time.
0 commit comments