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 custom transition effects I currently use the transition helper functions $.fn.emulateTransitionEnd and $.support.transition from Bootstrap 3.
While porting my code to Bootstrap 4 I noted that while $.fn.emulateTransitionEnd is still available and works as expected, the $.support.transition function is no longer availabe because it got replaced by Util.supportsTransitionEnd(). Unfortunately, the Util class is available within a Closure only so I cannot access it from my code.
So I ask to export the Util class to the global or jQuery namespace (e.g. as $.BootstrapUtil) to make it available for use in custom JS code.
This is somehow related to #18136 which complains about the Util class being exported as Util in the global namespace, which is not true for the default build - it is not exported at all, but IMHO should be exported under some name other than plain "Util".
The text was updated successfully, but these errors were encountered:
For custom transition effects I currently use the transition helper functions
$.fn.emulateTransitionEnd
and$.support.transition
from Bootstrap 3.While porting my code to Bootstrap 4 I noted that while
$.fn.emulateTransitionEnd
is still available and works as expected, the$.support.transition
function is no longer availabe because it got replaced byUtil.supportsTransitionEnd()
. Unfortunately, theUtil
class is available within a Closure only so I cannot access it from my code.So I ask to export the Util class to the global or jQuery namespace (e.g. as
$.BootstrapUtil
) to make it available for use in custom JS code.This is somehow related to #18136 which complains about the Util class being exported as
Util
in the global namespace, which is not true for the default build - it is not exported at all, but IMHO should be exported under some name other than plain "Util".The text was updated successfully, but these errors were encountered: