Skip to content

Instantly share code, notes, and snippets.

View MiracleBlue's full-sized avatar

Nicholas Kircher MiracleBlue

  • Founder & CEO, Zircat - @zircat-dev
  • Melbourne, Australia
View GitHub Profile
`import Ember from 'ember'`
IndexController = Ember.ObjectController.extend
needs: ['application']
actions:
hasProjects: (->
@get('model.length') > 0
).property('model.length')
`export default IndexController`