Sean Benoit

Results 8 comments of Sean Benoit

Modified it to accept a value of 0 as 1 was causing the same "little zoom" behavior. ``` defaultInitialZoom = !isNaN(parseInt(self.options.initialZoom)) ? self.options.initialZoom : Math.max((boundaryData.width / imgData.width), (boundaryData.height / imgData.height));...

Still coming up with a way to fix the ellipsis from going behind the (X), but this fixes the click problem. .selectivity-single-selected-item-remove { color: rgba(0,0,0,0.75); /\* float: right;*/ position:absolute; #...

Unfortunately, the fix I came up with _always_ adds 20px of padding to the right. .selectivity-single-result-container { position: absolute; top: 7px; right: 5px; left: 8px; overflow: hidden; text-overflow: ellipsis; white-space:...

Ok, so I figured out why it's failing, or rather, how to stop it from failing....but shouldn't these two be the same? Any idea why the plugin would treat them...

Thanks for your quick feedback. Based on your comments, I now realize that the wrapper element (.selectivity-input) is what actually contains the Selectivity instance... so, should I not want an...

Thanks - yea, have at it. I tried to "self document" all of my changes by wrapping them in "if/else/endif" syntax so they would be easier to pickout (at least...

Ignore this... See my pull request for an update. The where clause and having clauses didn't mesh. I think the underlying problem was when codeigniter tried to escape my DatatableModel::appendToSelectStr()...

I'm sure others may have had an easy time getting this working, but this is how I had to do it and just leaving as a reference for myself and...