backbone-autocomplete icon indicating copy to clipboard operation
backbone-autocomplete copied to clipboard

General Feedback

Open ericdfields opened this issue 12 years ago • 0 comments

Thanks for this. It's working out nicely for me so far.

I've modified it a little to trigger more events rather than explicitly determine the outcome of behaviors like focus/blur. In my autocomplete object, I then listen for 'render', 'hiding', etc:

@autocomplete.resultsView.on 'render', ->
  @$el.addClass('showing').scrollTo(0,0)
.on 'hiding', ->
  @$el.removeClass('showing')

Just FYI. Thanks again!

ericdfields avatar Oct 17 '13 19:10 ericdfields