Roger Garstang
Roger Garstang
I too would like to see this. If zoomValue is 100, then it should not be starting out at a higher zoom for smaller images. Seems like a bug to...
A little bit of a hack, but I fixed this with adding: `imgWidth = Math.min(imgWidth, imageWidth);` Inside _calculateDimensions right after imgWidth is calculated before imgHeight is set. Image can get...
You should be able to see it on any page with inputs you can focus on. It isn't keeping the focus in the dialog. I have a wrapper method I've...
Just to let you know what I did to work around the problem in my case: I call the method below to prevent anything from getting focus just before the...
The if (option.prop('selected')) probably also needs something that also compares the option text to the existing text of the combobox input to select it as well. I'm not sure how...
I was just getting on here to write this very thing. For some reason they decided autocomplete would be on/off. To the other comment saying "original selects dropdown", it isn't...
I added this to the top of the blur method and it seems to work- `if (e.relatedTarget && $(e.relatedTarget).closest(this.$container).length == 1) return;`
Also, shouldn't something always be appended, and this option just override it? Otherwise the original Select still exists on the page with the same ID.
I've noticed the dropdown not closing on focus lost at times too, but can't seem to repeat it. I also use it in a dynamic Make and Model selection, and...
The hidden attribute on an HTML tag is sort of deprecated because of the way it overrides the other display styles. I never use it because it requires manually adding...