Final tidy

This commit is contained in:
mattpass
2021-07-26 08:56:30 +01:00
parent d1d6760def
commit b1ba868eb6
2 changed files with 3 additions and 2 deletions

View File

@@ -12,4 +12,4 @@
.diffNone {background: ''; color: ''}
.resultsBar {position: absolute; display: none; width: 12px; height: 100%; top: 0; right: 0; overflow: hidden; pointer-events: none; z-index: 2}
.resultsBar .rBlock {position: absolute; display: block; width: 12px; background: rgba(128,128,128,0.3)}
.resultsBar .rBlock {position: absolute; display: block; width: 12px; background: rgba(128,128,128,0.3)}

View File

@@ -2850,7 +2850,7 @@ var ICEcoder = {
for (let char of input) {
// Find index of this char in brackets string
let bracketsIndex = brackets.indexOf(char)
// Not one of the bracket chars, continue to next char
if (bracketsIndex === -1) {
remainder += char;
@@ -2904,6 +2904,7 @@ var ICEcoder = {
// Considers selecting next on value input, according to user setting
ICEcoder.findReplace(get('find').value, true === ICEcoder.selectNextOnFindInput, false, false);
get("find").focus();
// Reset results display
} else {
ICEcoder.findReplace(get('find').value, false, false, false);
}