From 82fb6ddc99fc4f9d3a0fd8c124d29fe69e402edf Mon Sep 17 00:00:00 2001 From: John McLear Date: Sat, 6 Jun 2020 18:34:51 +0000 Subject: [PATCH] Revert "editor: ul/ol/li - outdent on ol and ul button press" This reverts commit fc88f12bbad71d800b9a31546341c11164008955. --- src/static/js/ace2_inner.js | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/src/static/js/ace2_inner.js b/src/static/js/ace2_inner.js index e0b401f4..787aaaf9 100644 --- a/src/static/js/ace2_inner.js +++ b/src/static/js/ace2_inner.js @@ -5166,7 +5166,6 @@ function Ace2Inner(){ var t = ''; var level = 0; var listType = /([a-z]+)([0-9]+)/.exec(getLineListType(n)); - var togglingOn = !allLinesAreList; if (listType) { t = listType[1]; @@ -5174,24 +5173,12 @@ function Ace2Inner(){ } var t = getLineListType(n); - if(t === listType) togglingOn = false; + // if already a list, deindent + if (allLinesAreList && level != 1) { level = level - 1; } + // if already indented, then add a level of indentation to the list + else if (t && !allLinesAreList) { level = level + 1; } - if(togglingOn){ - mods.push([n, allLinesAreList ? 'indent' + level : (t ? type + level : type + '1')]); - } - - if(!togglingOn){ // remove removing because we have - // scrap the entire indentation and list type - if(level === 1){ // if outdending but are the first item in the list then outdent - setLineListType(n, ''); // outdent - } - // else change to indented not bullet - if(level > 1){ - setLineListType(n, ''); // reomve bullet - let newLevel = level+1; - setLineListType(n, "indent"+level); // outdent - } - } + mods.push([n, allLinesAreList ? 'indent' + level : (t ? type + level : type + '1')]); } _.each(mods, function(mod){