algoliasearch-magento
algoliasearch-magento copied to clipboard
Broken with Bootstrap5
When do you intend to release an update compatible with bootstrap 5?
I made this work with bootstrap 5 @MarksEliel @davicotico. The only problem I saw was the icon picker not displaying its pop up in the right place. To fix this, change this line:
var tip = ($.fn.bsVersion() === '3.x') ? el.tip() : $(el.getTipElement())
(https://github.com/davicotico/jQuery-Menu-Editor/blob/master/bootstrap-iconpicker/js/bootstrap-iconpicker.js#L497)
to:
var tip = ($.fn.bsVersion() === '3.x') ? el.tip()
: ($.fn.bsVersion() === '5.x')
? $(bootstrap.Popover.getInstance($this).getTipElement())
: $(el.getTipElement())
This was helpful: https://github.com/itsjavi/bootstrap-colorpicker/issues/327#issuecomment-843082927
Is anyone able to recreate the minified js file? It's not very important to me, so I will just serve the modified un-minified file for now
you should also change the float-right class in TButtonGroup to float-end
None of this is working in Bootstrap 5.3.2
Hope this gets fixed soon.
Hi @InsiteFX , @glutamate , @MarksEliel
You can try Vanilla Javascript Menu Editor. I have worked on and will continue to work on Vanilla Javascript Menu Editor.
jQuery Menu Editor is not deprecated, but for now, I have no plans to update it