
This commit refactors repo-actions support to use components and make the implementation much simpler. It also fixes a bug with buttons being displayed when they shouldn't be.
16 lines
363 B
CoffeeScript
16 lines
363 B
CoffeeScript
`import Ember from 'ember'`
|
|
|
|
RepoActionsComponent = Ember.Component.extend(
|
|
displayCodeClimate: (->
|
|
@get('repo.githubLanguage') == 'Ruby'
|
|
).property('repo.githubLanguage')
|
|
|
|
actions:
|
|
codeClimatePopup: ->
|
|
$('.popup').removeClass('display')
|
|
$('#code-climate').addClass('display')
|
|
return false
|
|
)
|
|
|
|
`export default RepoActionsComponent`
|