Use travis location

This commit is contained in:
Piotr Sarnacki 2015-02-10 09:43:54 +01:00
parent 55cf221b56
commit 4f38faf3c2
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
`import TravisLocation from 'travis/utils/location'`
initialize = (container, application) ->
application.register 'location:travis', TravisLocation
Initializer =
name: 'location'
initialize: initialize
`export { initialize }`
`export default Initializer`

View File

@ -4,7 +4,7 @@
Router = Ember.Router.extend
# TODO: we should use TravisLocation here
location: if Ember.testing then 'none' else 'history'
location: if Ember.testing then 'none' else 'travis'
handleURL: (url) ->
url = url.replace(/#.*?$/, '')