Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit b1ba868

Browse files
author
mattpass
committed
Final tidy
1 parent d1d6760 commit b1ba868

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

assets/css/editor.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
.diffNone {background: ''; color: ''}
1313

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

assets/js/icecoder.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2850,7 +2850,7 @@ var ICEcoder = {
28502850
for (let char of input) {
28512851
// Find index of this char in brackets string
28522852
let bracketsIndex = brackets.indexOf(char)
2853-
2853+
28542854
// Not one of the bracket chars, continue to next char
28552855
if (bracketsIndex === -1) {
28562856
remainder += char;
@@ -2904,6 +2904,7 @@ var ICEcoder = {
29042904
// Considers selecting next on value input, according to user setting
29052905
ICEcoder.findReplace(get('find').value, true === ICEcoder.selectNextOnFindInput, false, false);
29062906
get("find").focus();
2907+
// Reset results display
29072908
} else {
29082909
ICEcoder.findReplace(get('find').value, false, false, false);
29092910
}

0 commit comments

Comments
 (0)