This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('.BoardColumn').forEach(item => { | |
const colCount = `${item.querySelectorAll('.SortableList-itemContainer > div').length}` | |
const countContainer = item.querySelector('.count-container') | |
countContainer !== null ? countContainer.innerHTML = colCount : item.querySelector('.BoardColumnHeader-name').innerHTML = `${item.querySelector('.BoardColumnHeader-name').innerHTML} - [<span class="count-container">${colCount}</span>]` | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Material Theme Darker High Contrast", | |
// "workbench.colorTheme": "Atom One Dark", | |
"editor.matchBrackets": false, | |
"telemetry.enableTelemetry": false, | |
"editor.cursorStyle": "line-thin", | |
"editor.cursorBlinking": "phase", | |
"editor.letterSpacing": 0.95, | |
"editor.fontSize": 12, | |
"editor.lineHeight": 36, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mainVideo = $('video'); | |
$(document).on('click', '.js-video-trigger', function(event) | |
{ | |
// find new video file name from link id | |
var video = $(this).attr('id'); | |
mainVideo | |
.find('source').each(function() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var backgroundVolume = 0; // start background volume at 0 | |
$('#main_audio')[0].volume = backgroundVolume; // set volume to 0 | |
$('#main_audio')[0].play(); // start playing tag | |
var fadeInAudio = setInterval( | |
function() { | |
if(backgroundVolume <= 1) // if it's not at 1 (full volume) | |
{ |