Kamil

Results 7 comments of Kamil

It also doesn't work on desktops when `nativeDropdown: true` is set in options.

@Aaarrrgggh hotfix for v2.4.8: In selectr.js file, `build()` method line `385` replace: `this.el.setAttribute("aria-hidden", true);` with `if (this.mobileDevice || this.nativeDropdown) {` ` this.el.setAttribute('aria-hidden', false);` `} else {` ` this.el.setAttribute('aria-hidden', true);` `}`...

@donmccurdy Yeah, i'll share it when i come home. Its scale 1, no transforms etc. Just basic plane. Btw, you can reproduce this behavior in demo. Just place the ball...

Yeah it is caused by the string pulling algorithm. A* returns correct path. Also i have to agree with you that in the case when we have character it is...

Sure, I'll let you know about my solution when i find some time to hang with it.

I'm not working on the 3d mall project anymore but if i remember correctly i did a workaround with separate meshes. Each shop has a z-level property and indicies that...

This fix works in Firefox but not in Chrome. I found out that `li` elements must be `contenteditable="true"`. I added this line at the end of `_make()` method: ```if (tagName...