import Controller from '@ember/controller'; import { inject as service } from '@ember/service'; import ENV from '../../config/environment'; export default Controller.extend({ newsManagement : service(), errors : service(), apiURL : null, init() { this._super(...arguments); this.set('apiURL', ENV.APP.api.downloadPath); console.log(this.apiURL); }, actions: { scrollTo(fragmentIdLink) { document.querySelector(`#${fragmentIdLink}`).scrollIntoView({ behavior: 'smooth', block: "start", inline: "start" }); } } });