Vova Yatsyuk
Vova Yatsyuk
This commit makes `.html()` to execute supplied scripts. Fixes https://github.com/fabiospampinato/cash/issues/366 jQuery realization is somewhat similar: https://github.com/jquery/jquery/blob/main/src/manipulation.js#L376-L400
This PR fixes ability to retrieve elements by id or class name, when id/class contains dot symbols. Fixes https://github.com/fabiospampinato/cash/issues/369. Html example: ```html ``` Js selectors that works in jQuery but...
### Current behavior The following code decreases actual dimensions of the element if the parent element uses `transform` property: ``` $('.el').height($('.el').height() + 5); ``` ### Expected behavior The element should...
I'm trying to submit a form and trigger the `submit` event as well. ```js $(document).on('submit', function (event) { alert('submit'); }); form.trigger('submit') // event is raised, but form is not submitted...
While this code works fine for most use cases: https://github.com/KnpLabs/php-github-api/blob/de2f27846139e7b4b92dcad9ff77660d0dc5dfad/lib/Github/Api/GitData/References.php#L83 It looks like that `GET /refs/{ref}` is an undocumented endpoint and it returns an array of references when an exact...
I've added methods to work with classes (can't use [classList](https://developer.mozilla.org/en-US/docs/Web/API/Element/classList) because of IE9,10) and proxy method to Sticky object.
### Describe the bug I'm creating this issue in addition to our recent talk on Twitter: https://twitter.com/TauriApps/status/1709573174269002065. If the tray menu is opened during its change (tray_handle().set_menu()), an old menu...
A bunch of code was removed and replaced with proper scope name. p.s. This code came to this project from [uikit-sublime](https://github.com/uikit/uikit-sublime). It was added by uikit-sublime plugin developer because that...
This commit removes a legacy code since we don't have a `data_completions` variable. p.s. Here is the source code of uikit where this variable came from https://github.com/uikit/uikit-sublime/blob/master/main.py#L12