Configure location properly

This commit is contained in:
Piotr Sarnacki 2015-02-05 12:39:11 +01:00
parent 3d216ad9f7
commit 59477e5eac
2 changed files with 6 additions and 1 deletions

View File

@ -1,9 +1,10 @@
`import Ember from 'ember'`
`import config from './config/environment'`
`import Location from 'travis/utils/location'`
Router = Ember.Router.extend
# TODO: we should use TravisLocation here
location: 'history'
location: if Ember.testing then 'none' else Location
handleURL: (url) ->
url = url.replace(/#.*?$/, '')

View File

@ -1,4 +1,8 @@
`import Ember from 'ember'`
Location = Ember.HistoryLocation.extend
getURL: ->
location = @get('location')
location.pathname + location.hash
`export default Location`