jellyfin-web/dashboard-ui/cordova/searchmenu.js
2015-07-12 01:17:09 -04:00

32 lines
582 B
JavaScript

(function () {
function searchMenu() {
var self = this;
self.show = function () {
cordova.searchbar.show();
};
self.hide = function () {
cordova.searchbar.hide();
};
document.addEventListener('searchEvent', function (data) {
Events.trigger(self, 'change', [data.text || '']);
}, true);
document.addEventListener('searchClosed', function (data) {
Events.trigger(self, 'closed');
}, true);
}
window.SearchMenu = new searchMenu();
})();