mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
8d65303268
refs https://github.com/TryGhost/Ghost/issues/14101 - `{{action}}` is deprecated and should be replaced with `{{on}}` and `{{fn}}` with direct use of methods - switched to calling `ui.setMainClass` action directly
6 lines
177 B
JavaScript
6 lines
177 B
JavaScript
import Controller from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
export default class EditLoadingController extends Controller {
|
|
@service ui;
|
|
}
|