2
我有當輸入事件流presssedBacon.js如何根據另一個屬性過濾事件流?
var enter =
$('#text')
.asEventStream('keydown')
.filter(function(e){
return e.keyCode === 13
})
這個偉大的工程。但是,如果按下ENTER並且另一個屬性textMatches爲真,我只想採取行動。我該怎麼做呢?我試過
var advance = textMatches.and(enter)
但它沒有奏效。