Fix repo controllers to use camelize properly

This commit is contained in:
Piotr Sarnacki 2015-01-23 13:36:04 +01:00
parent c7147e6146
commit 20567df443
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ Controller = Ember.Controller.extend
activate: (action) ->
@stopObservingLastBuild()
this["view#{$.camelize(action)}"]()
this["view_#{action}".camelize()]()
viewIndex: ->
@observeLastBuild()

View File

@ -49,7 +49,7 @@ Travis.ReposController = Ember.ArrayController.extend
activate: (tab, params) ->
@set('sortProperties', ['sortOrder'])
@set('tab', tab)
this["view#{tab.camelize()}"](params)
this["view_#{tab}".camelize()]()
viewRecent: ->
@set('content', @get('recentRepos'))