mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
import loadScript from "discourse/lib/load-script";
|
|
|
|
export default Discourse.Route.extend({
|
|
activate() {
|
|
loadScript("/javascripts/Chart.min.js").then(() => {
|
|
this.controllerFor('admin-dashboard-next').fetchDashboard();
|
|
});
|
|
}
|
|
});
|