我知道Marionette默认会调用preventDefault
和stopPropagation
,但这会阻止我的菜单关闭。
有没有办法重新启用它?
答案 0 :(得分:1)
幸运的是谷歌查询。
Backbone.Marionette.CompositeView.extend({
triggers: {
"click .do-something": {
event: "something:do:it",
preventDefault: true, // this param is optional and will default to true
stopPropagation: false
}
}
});