1
0
Fork 0
forked from 0x2620/oxjs

make find work in list demo

This commit is contained in:
Rolux 2010-07-02 18:32:16 +02:00
commit 17f5f7b1e3
2 changed files with 32 additions and 4 deletions

View file

@ -2024,7 +2024,10 @@ requires
function submit() {
Ox.print("input submit", that.$input.val())
that.$input.trigger("blur");
that.triggerEvent("submit", that.$input.val());
that.triggerEvent("submit", self.option ? {
key: self.option.id,
value: that.$input.val()
} : that.$input.val());
}
that.height = function(value) {