• bgourarie

    (@bgourarie)


    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)
  • Plugin Author leandrov

    (@leandrov)

    Thank you we have fixed this on the new release!

Viewing 1 replies (of 1 total)
  • The topic ‘Typo in jquery inclusion in version 2.5.2’ is closed to new replies.