M app/javascript/flavours/glitch/features/emoji/emoji.js => app/javascript/flavours/glitch/features/emoji/emoji.js +2 -2
@@ 50,7 50,7 @@ const emojifyTextNode = (node, customEmojis) => {
if (shortname in customEmojis) {
const filename = autoPlayGif ? customEmojis[shortname].url : customEmojis[shortname].static_url;
replacement = document.createElement('img');
- replacement.setAttribute('draggable', false);
+ replacement.setAttribute('draggable', 'false');
replacement.setAttribute('class', 'emojione custom-emoji');
replacement.setAttribute('alt', shortname);
replacement.setAttribute('title', shortname);
@@ 65,7 65,7 @@ const emojifyTextNode = (node, customEmojis) => {
const { filename, shortCode } = unicodeMapping[match];
const title = shortCode ? `:${shortCode}:` : '';
replacement = document.createElement('img');
- replacement.setAttribute('draggable', false);
+ replacement.setAttribute('draggable', 'false');
replacement.setAttribute('class', 'emojione');
replacement.setAttribute('alt', match);
replacement.setAttribute('title', title);
M app/javascript/flavours/glitch/packs/public.jsx => app/javascript/flavours/glitch/packs/public.jsx +2 -2
@@ 183,10 183,10 @@ function main() {
if (sidebar.classList.contains('visible')) {
document.body.style.overflow = null;
- toggleButton.setAttribute('aria-expanded', false);
+ toggleButton.setAttribute('aria-expanded', 'false');
} else {
document.body.style.overflow = 'hidden';
- toggleButton.setAttribute('aria-expanded', true);
+ toggleButton.setAttribute('aria-expanded', 'true');
}
toggleButton.classList.toggle('active');
M app/javascript/flavours/glitch/packs/settings.js => app/javascript/flavours/glitch/packs/settings.js +2 -3
@@ 1,6 1,5 @@
import 'packs/public-path';
import loadPolyfills from 'flavours/glitch/load_polyfills';
-import ready from 'flavours/glitch/ready';
import loadKeyboardExtensions from 'flavours/glitch/load_keyboard_extensions';
import 'cocoon-js-vanilla';
@@ 13,10 12,10 @@ function main() {
if (sidebar.classList.contains('visible')) {
document.body.style.overflow = null;
- toggleButton.setAttribute('aria-expanded', false);
+ toggleButton.setAttribute('aria-expanded', 'false');
} else {
document.body.style.overflow = 'hidden';
- toggleButton.setAttribute('aria-expanded', true);
+ toggleButton.setAttribute('aria-expanded', 'true');
}
toggleButton.classList.toggle('active');