
We still use Travis in some places in the app and Travis var is not set when using ember build. The initializer added in this commit sets it to the current app instance
11 lines
197 B
CoffeeScript
11 lines
197 B
CoffeeScript
initialize = (container, app) ->
|
|
if typeof window != 'undefined'
|
|
window.Travis = app
|
|
|
|
Initializer =
|
|
name: 'app'
|
|
initialize: initialize
|
|
|
|
`export {initialize}`
|
|
`export default Initializer`
|