Přemysl Václav Duben
Přemysl Václav Duben
Well known error in IE11, solutions from other plugins: https://github.com/galambalazs/smoothscroll-for-websites/issues/21 https://github.com/skatejs/skatejs/issues/153 In my opinion this condition is unnecessary.
I looked closer and div.notifyjs-corner, which contains text, has style `left: 45%`. Text is with different length, so this css style is wrong. It should be `left: 50%` with `transform:...
I have the opposite problem. If I use conditional CSS pro mso e.g. `li{ text-indent: -1em; }` for list items, it's used for inlining, which couse problems in other mail...
Yes, I use the last release 2.2.0 - using Composer. This fix is not released yet, but thanks for info, I will use it.
If someone needs the same, just edit prototype function like this way: ``` Chosen.prototype.update_results_content = function(content) { res = this.search_results.html(content); this.form_field_jq.trigger("chosen:showing_results", { chosen: this }); return res; }; ```
Have you already make function `chosen:showing_results`? In my case, I have something like this: `$('.chosen-select').on("chosen:showing_results", function(){ ... });`
Same by me. As a workaround I have to edit final text while saving like this: `$('.atwho-query, .atwho-inserted').contents().unwrap()`
If I'm right, you set change event function as option by init. It means you have to know current DOM elm, which you set spectrum for, don't you? Than it's...