You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chrome is throwing 3 of the same error from this code:
constBowser=require("bowser");jQuery(document).ready(function($){// Inside of this function, $() will work as an alias for jQuery()// and other libraries also using $ will not be accessible under this shortcut// https://codex.wordpress.org/Function_Reference/wp_enqueue_script#jQuery_noConflict_Wrappers// Touch Device DetectionvarisTouchDevice="ontouchstart"indocument.documentElement;if(isTouchDevice){$("body").removeClass("no-touch");}// Browser detection via Bowser (https://github.com/lancedikson/bowser) - add detection as neededconstuserBrowser=Bowser.getParser(window.navigator.userAgent);constbrowser=userBrowser.getBrowser();if(browser.name==="Internet Explorer"&&browser.version=="11.0"){$("body").addClass("ie-11");}elseif(browser.name==="Safari"){$("body").addClass("safari");}elseif(browser.name==="Chrome"){$("body").addClass("chrome");}});
Additionally, Chrome's Sources tab isn't showing the theme's js at all:
The text was updated successfully, but these errors were encountered:
Chrome is throwing 3 of the same error from this code:
Additionally, Chrome's Sources tab isn't showing the theme's js at all:
The text was updated successfully, but these errors were encountered: