Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Hide Dark Mode Switch */
- (function ($) {
- // dark-mode media query matched or not
- let matched = window.matchMedia('(prefers-color-scheme: dark)').matches;
- if (matched) {
- console.log('Currently in dark mode');
- $('.jeg_dark_mode_toggle').trigger('click'); // With Switch || This Function save the dark mode cookie
- $('.jeg_dark_mode').remove(); // Remove Dark Mode Switch
- }
- else {
- console.log('Currently not in dark mode');
- }
- }(jQuery))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement