次のようなビューを宣言しています。
var VirtualFileSelectorView = Backbone.View.extend({
selected: function() {
console.log("selected function");
},
initialize: function() {
// Shorthand for the application namespace
var app = brickpile.app;
// bind to the selected event
app.bind('selected', this.selected, this);
}
});
次に、ここで確認できるように、このビューの 2 つのインスタンスをインスタンス化します: http://cl.ly/H5WI
問題は、選択したイベントが発生したときに、選択した関数が 2 回呼び出されることですか?