現在、ホバーされた要素でのみ Bootstrap ポップオーバーをトリガーしようとしています。残念ながら、ページ上にあるすべてのものでトリガーされています。以下は、バックボーン スクリプトです (CoffeeScript で)。
Site.Views.Stories ||= {}
class Site.Views.Stories.IndexView extends Backbone.View
template: JST["backbone/templates/stories/index"]
initialize: () ->
@options.stories.bind('reset', @addAll)
addAll: () =>
@options.stories.each(@addOne)
addOne: (story) =>
view = new Site.Views.Stories.StoryView({model : story})
@$("#columns").append(view.render().el)
render: =>
$(@el).html(@template(stories: @options.stories.toJSON() ));
@addAll()
return this
events: =>
"mouseover .rating" : this.showhover
showhover: =>
this.$('.rating').popover('show');