libs

Results 25 comments of libs

> I am using this template to be able to use padding as margin (assuming there is equal padding on both sides): > > ``` > .{{mixinName}}() { > background:...

I found solution: My function "search_results_mouseup" looks like this working solution: ``` Chosen.prototype.search_results_mouseup = function (evt) { var target; target = $(evt.target).hasClass("active-result") ? $(evt.target) : $(evt.target).parents(".active-result").first(); if (target.length) { this.result_highlight...

When I open FF with debug console there is unsupported function for ShadowRoot API: getSelection. See https://caniuse.com/mdn-api_shadowroot_getselection . Can you fix it please at this line? ` const range =...

I am not participiant and I dont want be. Please fix it for others too. Thx. Otherwise, Mozila has a whole other set of problems and it's basically unusable in...

And what about: public static function ping($imap_stream): bool in Imap class?

OK, I found solution. It looks like Guzzle client will not encode query when q = aaa/bbb. Soo, putting urlencode(utf8_encode($file)) will fix this problem.

I also tried create custom plugin which will copy file from source to target on event $bind['paste.copyfrom']. But in plugin is only filename. Plugin architecture missing source path and destination...

I will be happy, when this call: `elFinder::$instance->trigger('paste.copyfrom', array(&$thash, &$name, '', elFinder::$instance, $this), $errors);` will looks like this: `elFinder::$instance->trigger('paste.copyfrom', array(&$thash, &$name, '', elFinder::$instance, $this, $source, $destination), $errors); ` Then over...

Is it possible implement my reccomendation?

This is my fix: ``` Chosen.prototype.search_results_mousewheel = function (evt) { var delta; if (evt.originalEvent) { delta = evt.originalEvent.deltaY || -evt.originalEvent.wheelDelta || evt.originalEvent.detail; } if (delta != null) { if (evt.cancelable)...