minor tweak...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-07-01 20:20:30 +03:00
parent cde9596299
commit bf73a289c2

View File

@ -647,6 +647,7 @@ function(item, event, evt, ...args){
// { // {
// // if true unresolved items will not trigger the event unless the // // if true unresolved items will not trigger the event unless the
// // input was null/undefined... // // input was null/undefined...
// // default: true
// skipUnresolved: <bool>, // skipUnresolved: <bool>,
// //
// ... // ...
@ -686,6 +687,8 @@ function(event, {handler, action, default_item, filter, options={}, getter='sear
// distinguish one from the other... // distinguish one from the other...
noQueryCheck: true, noQueryCheck: true,
skipDisabled: true, skipDisabled: true,
// XXX should this be the default...
skipUnresolved: true,
}, },
options instanceof Function ? options instanceof Function ?
options.call(this) options.call(this)
@ -3193,7 +3196,6 @@ var BaseBrowserPrototype = {
default_item: function(){ return this.get(0) }, default_item: function(){ return this.get(0) },
options: function(){ options: function(){
return { return {
skipUnresolved: true,
skipDisabled: !(this.options || {}).focusDisabledItems, skipDisabled: !(this.options || {}).focusDisabledItems,
} }, } },
getter: 'get' }), getter: 'get' }),