2018-05-03 09:41:41 -04:00
|
|
|
import loadScript from "discourse/lib/load-script";
|
|
|
|
|
2018-04-18 15:30:41 -04:00
|
|
|
export default Discourse.Route.extend({
|
2018-04-19 12:19:21 -04:00
|
|
|
activate() {
|
2018-05-03 09:41:41 -04:00
|
|
|
loadScript("/javascripts/Chart.min.js").then(() => {
|
|
|
|
this.controllerFor('admin-dashboard-next').fetchDashboard();
|
|
|
|
});
|
2018-04-18 15:30:41 -04:00
|
|
|
}
|
|
|
|
});
|