mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
cf36851265
replaces #41, #60 - update ember-suave and grunt-jscs to 3.0 - standardize Ember global de-structuring rules across app & tests
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {run} = Ember;
|
|
|
|
export default function destroyApp(application) {
|
|
run(application, 'destroy');
|
|
}
|