
The previous initializer API was deprecated in Ember 2.1 (See http://emberjs.com/deprecations/v2.x/), so this updates the initializer signatures to accomodate that change. Also, remove the registered deprecation from the workflow.
18 lines
284 B
JavaScript
18 lines
284 B
JavaScript
// Generated by CoffeeScript 1.10.0
|
|
var Initializer, initialize;
|
|
|
|
initialize = function(app) {
|
|
if (typeof window !== 'undefined') {
|
|
return window.Travis = app;
|
|
}
|
|
};
|
|
|
|
Initializer = {
|
|
name: 'app',
|
|
initialize: initialize
|
|
};
|
|
|
|
export {initialize};
|
|
|
|
export default Initializer;
|