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
For the frontend theme, I am excluding jQuery with e_library in the theme folder. I noticed that it influences admin theme too and jquery is not loaded then.
Expected Source
My working e_library in frontend theme: //after fix admin loading
class theme_library
{
/**
* Provides information about external libraries.
*/
function config()
{
return array();
}
/**
* Alters library information before detection and caching takes place.
*/
function config_alter(&$libraries)
{
if (e_ADMIN_AREA)
{
}
else
{
$libraries['cdn.jquery'] = array();
$libraries['jquery'] = array();
$libraries['cdn.jquery3'] = array();
$libraries['jquery3'] = array();
// unset($libraries['cdn.jquery3']);
// unset($libraries['jquery3']);
}
}
}
Additional Context
This question is for core developers, otherwise, I would create a discussion topic. They dislike issues with non-related comments. Thanks for understanding.
The text was updated successfully, but these errors were encountered:
Question
For the frontend theme, I am excluding jQuery with e_library in the theme folder. I noticed that it influences admin theme too and jquery is not loaded then.
Expected Source
My working e_library in frontend theme: //after fix admin loading
Additional Context
This question is for core developers, otherwise, I would create a discussion topic. They dislike issues with non-related comments. Thanks for understanding.
The text was updated successfully, but these errors were encountered: