grocy/js/components/locationpicker.js
Katharina Bogad 2a7fbbecf8 Fix bugs
2021-06-24 22:18:19 +02:00

18 lines
370 B
JavaScript

import BasePicker from "./BasePicker";
class locationpicker extends BasePicker
{
constructor(Grocy, scopeSelector = null)
{
super(Grocy, "#location_id", scopeSelector);
this.picker = this.$(this.basename);
this.input_element = this.$(this.basename + '_text_input');
this.initCombobox('.location-combobox');
this.prefill();
}
}
export { locationpicker }