Denis Lopatin

Results 30 comments of Denis Lopatin

Ubuntu 24.04.2 LTS Firefox Bootstrap 5.3 https://github.com/user-attachments/assets/633c3e43-f1e6-46e5-b596-1dc9eb9469cd

I won't say that there was the same problem, but something very similar with php8.3-fpm. There I solved it with the `apt-get install libgmp-dev` command.

When interacting with a menu item and then rebooting, should it point to a specific menu item?

Hi. What about the following idea to implement? We can use a proxy object to track the configuration object. This will allow us to allow users to pass their custom...

> Honestly, I'm not really sure about the internals of Bootstrap. However the implementation you shared and the video, that does look like what I'd be expecting. > > Looking...

@TomONeill Yes, you were right. The `execute` function is already provided in the bootstrap api to perform the specified operation. That is, the next section of the code will do...

Well, if the bootstrap team doesn't mind, that's it: ```js if (this._config.keyboard) { this.hide() return } ``` will be displayed as (across the entire Modal api): ```js if (execute(this._config.keyboard, [this,...

Hi. Please provide a test example with the expected and actual behavior.

Hi. Bootstrap simply cannot initialize the element in advance, and even if it could, it would cause the element to flash, since the browser will render it before js starts...

Unlikely, since bootstrap loads the elements at the very end of its module: ```js EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) { event.preventDefault() Dropdown.getOrCreateInstance(this).toggle() }) ``` You can try to change the...