We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f40199f commit 1d5f638Copy full SHA for 1d5f638
src/scripts/background.js
src/scripts/popup.js
@@ -43,18 +43,6 @@ function getYesterday() {
43
}
44
45
document.addEventListener('DOMContentLoaded', function() {
46
- // Firefox date input fix
47
- if (isFirefox) {
48
- document.querySelectorAll('input[type="date"]').forEach(input => {
49
- if (!input.value) {
50
- input.type = 'text';
51
- input.placeholder = 'YYYY-MM-DD';
52
- }
53
- input.addEventListener('blur', () => {
54
- if (input.value) input.type = 'date';
55
- });
56
57
58
59
// Dark mode setup
60
const darkModeToggle = document.querySelector('img[alt="Night Mode"]');
0 commit comments