Revision 04b01603
Von Sven Schöling vor fast 8 Jahren hinzugefügt
js/kivi.Part.js | ||
---|---|---|
597 | 597 |
} |
598 | 598 |
} |
599 | 599 |
window.clearTimeout(this.timer); |
600 |
this.timer = window.setTimeout(function() { self.update_results() }, 100); |
|
600 |
if (event.which == KEY.ENTER) { |
|
601 |
self.update_results(); |
|
602 |
} else { |
|
603 |
this.timer = window.setTimeout(function() { self.update_results() }, 100); |
|
604 |
} |
|
601 | 605 |
}, |
602 | 606 |
close_popup: function() { |
603 | 607 |
$('#part_selection').dialog('close'); |
Auch abrufbar als: Unified diff
kivi.Part.js: PickerPopup: bei Enter nicht timeout abwarten