From 0765ab378b393fd416bebcc4d6f900b0f7b5a599 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Wed, 25 Sep 2013 09:47:38 +0100 Subject: [PATCH] Condensed screen layout & removed function calls Left column of info display now 300px wide and also contains your device info Also removed some line breaks, result of this is a smaller screen area needed, less likely to get double scrollbars using ICEcoder on smaller screens No need to call redoChangedContent anymore, removed that function No need to set changedContent array. It's now savedPoints array, only updated on save not changes --- editor.php | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/editor.php b/editor.php index 1ca9028..f7f979d 100644 --- a/editor.php +++ b/editor.php @@ -65,7 +65,7 @@ h2 {color: rgba(0,198,255,0.7)}
-
+

server

Server name, OS & IP:


@@ -76,7 +76,12 @@ h2 {color: rgba(0,198,255,0.7)} PHP version:


Date & time:
-


+

+

your device

+ Browser:
+

+ Your IP:
+

@@ -103,13 +108,7 @@ h2 {color: rgba(0,198,255,0.7)}
-
-

your device

- Browser:
-

- Your IP:
- -
+
-

test suite

Run unit tests:
Run unit tests
@@ -135,7 +133,6 @@ h2 {color: rgba(0,198,255,0.7)} ;}; if($ICEcoder['devMode']) {?>
-

dev mode on

Status:
Using ice-coder.js @@ -180,7 +177,6 @@ function createNewCMInstance(num) { keyMap: "ICEcoder", onKeyEvent: function(thisCM, e) { if (e.type=="keyup") { - top.ICEcoder.redoChangedContent(e); if ("undefined" != typeof top.doFind) { clearInterval(top.doFind); } @@ -223,7 +219,6 @@ function createNewCMInstance(num) { window['cM'+num].on("change", function(thisCM, changeObj) { // If we're not loading the file, it's a change, so update tab if (!top.ICEcoder.loadingFile) { - top.ICEcoder.changedContent[top.ICEcoder.selectedTab-1] = thisCM.historySize().undo > 0 ? 1 : 0; top.ICEcoder.redoTabHighlight(top.ICEcoder.selectedTab); } top.ICEcoder.getCaretPosition();