Typo in jquery inclusion in version 2.5.2
-
There seems to be a typo in line 995 of application.cfm — you are registering jquery with a relative url instead of an absolute one because of a missing colon.
wp_register_script(Helper::tokenize('jquery-admin'), "https//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js", false, null);
should probably be
wp_register_script(Helper::tokenize('jquery-admin'), "https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js", false, null);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Typo in jquery inclusion in version 2.5.2’ is closed to new replies.