Skip to content
7 changes: 3 additions & 4 deletions full.css
Original file line number Diff line number Diff line change
Expand Up @@ -886,13 +886,12 @@ body.notransition .sidebar {
margin-left: -18px;
}

.sidebar .header .title-screen .title:not(.scrolling):hover {
body:not(.mobile) .sidebar .header .title-screen .title:not(.scrolling, :has(> .branch-icon:hover)):is(:hover, :active) {
color: #fff;
}

.sidebar .header .title-screen .title:not(.scrolling):active {
.sidebar .header .title-screen .title:not(.scrolling, :has(> .branch-icon:active)):active :is(.back, .logo) {
opacity: .5;
transition: none;
}

.sidebar .header .logo {
Expand Down Expand Up @@ -970,7 +969,7 @@ body:not(.mobile) .sidebar .header .title .branch-icon:hover {
}

body:not(.mobile) .sidebar .header .title .branch-icon:active {
opacity: 0.5 !important;
opacity: 0.27 !important;
}

.sidebar .header .title .branch-icon.active {
Expand Down
2 changes: 0 additions & 2 deletions full.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@
<link rel="shortcut icon" href="/icons/android-app-512.png">
<link rel="apple-touch-icon" href="/icons/iphone-app-180.png">

<link rel="apple-touch-startup-image" href="https://codeit.codes/splashes/apple-splash-2048-2732.jpg" media="(orientation: portrait) and (orientation: landscape)">

<link rel="stylesheet" href="/full.css">

<link rel="preconnect" href="https://codeit.codes">
Expand Down
2 changes: 0 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@
<link rel="shortcut icon" href="/icons/android-app-512.png">
<link rel="apple-touch-icon" href="/icons/iphone-app-180.png">

<link rel="apple-touch-startup-image" href="https://codeit.codes/splashes/apple-splash-2048-2732.jpg" media="(orientation: portrait) and (orientation: landscape)">

<link rel="stylesheet" href="/homepage/homepage.css">

</head>
Expand Down
4 changes: 2 additions & 2 deletions lib/codeit.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*

codeit.js
v3.1.0
v3.1.1
MIT License

https://codeit.codes
Expand Down Expand Up @@ -622,7 +622,7 @@ class CodeitElement extends HTMLElement {
if (selContents.includes('\n')) {

// tab lines in selection
selContents = selContents.split('\n').join('\n' + cd.options.tab);
selContents = cd.options.tab + selContents.split('\n').join('\n' + cd.options.tab);

// insert tabbed selection
cd.deleteCurrentSelection();
Expand Down
2 changes: 1 addition & 1 deletion worker/client-channel.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


// update worker name when updating worker
const WORKER_NAME = 'codeit-worker-v604';
const WORKER_NAME = 'codeit-worker-v606';


// internal paths
Expand Down