Tested with raw change like this and toggle button not work correctly anymore. $.fn.dropdown.Constructor.prototype._addEventListeners = function _addEventListeners() { var _this = this; $(this._element).on('click.bs.dropdown', function(event) { event.preventDefault(); _this.toggle(); })...
@evanpBootstrap toggles the "open" class if it'snotset.It will remove the "open" class if it is set. The quick fix for this would be to settoggle: toggle = '[data-toggle=dropdown], .dropdown > a' The problem would then be that every dropdown would beinitialized on loadand that...