6 lines
173 B
CoffeeScript
6 lines
173 B
CoffeeScript
Travis.LineNumberParser = Ember.Mixin.create
|
|
fetchLineNumber: ->
|
|
url = @container.lookup('router:main').get('url')
|
|
if match = url.match(/#L(\d+)$/)
|
|
match[1]
|