Milan Simek
Milan Simek
When using sticky kit with chrome 65, scrolling stops working if you scroll constantly starting at page load. It seems it blocks requestAnimationFrame and async deferred loading of resources.
I'm experiencing the following issue when using KDE5: 1. I take a screenshot and upload to FTP 2. The plasma panel becomes unresponsive for 20 seconds 3. If I paste...
The following part contains a product load, which slows everything down: https://github.com/fheyer/sphinxsearch/blob/master/app/code/community/Gfe/SphinxSearch/Helper/Data.php#L99 It's better to replace it with: ``` if ($entity_id) { $categoryCollection = Mage::getResourceModel('catalog/category_collection') ->clear() ->joinField('product_id', 'catalog/category_product', 'product_id', 'category_id...
I've added drag & drop tag reordering functionality which I needed for one of my projects. You can check the functionality in this video: https://github.com/agustinl/svelte-tags-input/assets/10584134/3476e306-8775-4b7b-a102-4609f0bac680 Is this something you'd like...
As discussed in issue #35
Default config allows `.inc` to be included but doesn't include it in `move_uploaded_file` blacklist
Here `inc`, `php` and `phtml` are whitelisted: https://github.com/jvoisin/snuffleupagus/blob/857fae6d6b0f39856d1032ec7b07b5dcd52dd342/config/default.rules#L63-L71 However, only `\\.ph` and `\\.ht` are blacklisted in the `move_uploaded_file` rule: https://github.com/jvoisin/snuffleupagus/blob/857fae6d6b0f39856d1032ec7b07b5dcd52dd342/config/default.rules#L119-L125 Is this intentional? If not would you like me to...