diff --git a/editor.php b/editor.php
index 9390747..80f5c09 100644
--- a/editor.php
+++ b/editor.php
@@ -154,15 +154,6 @@ h2 {color: rgba(0,198,255,0.7)}
}
},1000);
-
-
:
@@ -193,12 +184,12 @@ CodeMirror.keyMap.ICEcoder = {
// CodeMirror does not honor indentWithTabs = false properly when handling Tab key
// Marijn said that it is by design, so we need to make a workaround of our own
(function(){
- // let's back up original insertTab function which actually puts
+ // let's back up original insertTab function which actually puts
var originalInsertTabFunction = CodeMirror.commands.insertTab;
// and replace it with our own, which branches on whether our ICEcoder.indentWithTabs value is true or false
CodeMirror.commands.insertTab = function(cm){
if (top.ICEcoder.indentWithTabs){
- // if it is true, then we should still put there, let's use original function
+ // if it is true, then we should still put there, let's use original function
return originalInsertTabFunction(cm);
} else {
// otherwise - let's call another handler, insertSoftTab which will do the job
@@ -250,7 +241,7 @@ function createNewCMInstance(num) {
// Keyup
window['cM'+num] .on("keyup", function(thisCM) {top.ICEcoder.cMonKeyUp(thisCM,'cM'+num)});
window['cM'+num+'diff'] .on("keyup", function(thisCM) {top.ICEcoder.cMonKeyUp(thisCM,'cM'+num+'diff')});
-
+
// Cursor activity
window['cM'+num] .on("cursorActivity", function(thisCM) {top.ICEcoder.cMonCursorActivity(thisCM,'cM'+num)});
window['cM'+num+'diff'] .on("cursorActivity", function(thisCM) {top.ICEcoder.cMonCursorActivity(thisCM,'cM'+num+'diff')});
diff --git a/files.php b/files.php
index 3831e2d..00ea4e8 100644
--- a/files.php
+++ b/files.php
@@ -52,8 +52,6 @@ $permColors = $thisPermVal == 777 ? 'background: #800; color: #eee' : 'color: #8
-
-
@@ -61,5 +59,5 @@ $permColors = $thisPermVal == 777 ? 'background: #800; color: #eee' : 'color: #8