blob: df27a1165be06ff97df48ffa584ddf7227c70acf [file] [log] [blame]
/**
* Hint menu
*/
define(['menu',
'hint/item',
'hint/prefix',
'hint/lengthField'], function (menuClass, itemClass, prefixClass, lengthFieldClass) {
return {
/**
* Create new hint helper menu.
*/
create : function (hint, context, params) {
var obj = Object.create(menuClass)
.upgradeTo(this)
._init(itemClass, prefixClass, lengthFieldClass, params);
obj._context = context;
obj._element.classList.add('hint');
obj._hint = hint;
// Make the top item always active
obj._firstActive = true;
// This is only domspecific
obj.element().addEventListener('blur', function (e) {
this.menu.hide();
});
// Focus on input field on hide
obj.onHide = function () {
this._hint.unshow();
};
return obj;
},
/**
* The hint helper object,
* the menu is attached to.
*/
hint : function () {
return this._hint;
}
};
});