Skip to content

Commit 2c85bad

Browse files
authored
Merge pull request #246 from codeitcodes/patch-1
2 parents c548647 + 9e1850d commit 2c85bad

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

bottomfloat.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// function runs in loadFile() in gitsidebar.js
33
// if isMobile
44
function updateFloat() {
5-
5+
66
// close sidebar
77
toggleSidebar(false);
88
saveSidebarStateLS();
@@ -116,12 +116,6 @@ if (isMobile) {
116116

117117
});
118118

119-
cd.on('focus', () => {
120-
121-
bottomWrapper.classList.add('hidden');
122-
123-
});
124-
125119

126120
// update on screen resize
127121

filebrowser.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3488,13 +3488,14 @@ function setupSidebar() {
34883488
// render sidebar
34893489
renderSidebarHTML();
34903490

3491-
// if sidebar is open
3491+
// if sidebar is open in local storage
34923492
if (getStorage('sidebar') == 'true'
34933493
&& !isEmbed) {
34943494

34953495
// don't transition
34963496
body.classList.add('notransition');
3497-
3497+
3498+
// open sidebar
34983499
toggleSidebar(true);
34993500

35003501
onNextFrame(() => {

worker/client-channel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
// update worker name when updating worker
7-
const WORKER_NAME = 'codeit-worker-v618';
7+
const WORKER_NAME = 'codeit-worker-v619';
88

99

1010
// internal paths

0 commit comments

Comments
 (0)