From 271bf32cd08139176417f7704b03489e8f9625ab Mon Sep 17 00:00:00 2001 From: Basit Ali Date: Fri, 11 Aug 2017 23:23:15 +0500 Subject: [PATCH 1/6] Add search/searchcursor to support Cmd+D shortcut for selecting next occurrence of the selected word. --- src/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.html b/src/index.html index f507c84..0b48cc8 100644 --- a/src/index.html +++ b/src/index.html @@ -571,6 +571,7 @@ + From 8d5a348c1f9c979863c6cab22d797229248ba7eb Mon Sep 17 00:00:00 2001 From: Kushagra Gour Date: Wed, 20 Sep 2017 02:04:57 +0530 Subject: [PATCH 2/6] add events for detach preview and css setting btn --- src/script.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/script.js b/src/script.js index 0ba399b..3df29ed 100644 --- a/src/script.js +++ b/src/script.js @@ -1859,6 +1859,8 @@ globalConsoleContainerEl } scope.openDetachedPreview = function() { + trackEvent('ui', 'detachPreviewBtnClick'); + if (scope.detachedWindow) { scope.detachedWindow.focus(); return; @@ -1895,6 +1897,7 @@ globalConsoleContainerEl scope.acssSettingsCm.refresh(); scope.acssSettingsCm.focus(); }, 500); + trackEvent('ui', 'cssSettingsBtnClick'); }; function init() { From 15be39c674f8aabeba82c94c0b6deb8d909b4e35 Mon Sep 17 00:00:00 2001 From: Kushagra Gour Date: Thu, 21 Sep 2017 10:22:30 +0530 Subject: [PATCH 3/6] refactor onboard modal --- src/index.html | 110 ++++++++++++++++++++++++------------------------- src/style.css | 57 ++++++++++++++----------- 2 files changed, 87 insertions(+), 80 deletions(-) diff --git a/src/index.html b/src/index.html index bcea94a..9bb8aae 100644 --- a/src/index.html +++ b/src/index.html @@ -233,9 +233,8 @@ - - + + @@ -315,63 +314,58 @@