import Controller from '@ember/controller'; import { inject as service } from '@ember/service'; export default Controller.extend({ subDistrict : service(), errors : service(), init() { this._super(...arguments); }, actions: { scrollTo(fragmentIdLink) { document.querySelector(`#${fragmentIdLink}`).scrollIntoView({ behavior: 'smooth', block: "start", inline: "start" }); } } });