RailsCasts Pro episodes are now free!

Learn more or hide this

Andrew Valish's Profile

GitHub User: Valish

Site: vali.sh

Comments by Andrew Valish

Avatar

Turns out it was just an indent issue. Dope.

Avatar

I can't quite wrap my head around this, but while following this tutorial line-by-line, my Backbone app refuses to render the view template. Please point me in the right direction, as this is my first experience with Backbone, and I've been circling around this problem for the past two days.

This is my /entries.js file:

javascript
class Raffler.Routers.Entries extends Backbone.Router
        routes:
                '': 'index'
                'entries/:id': 'show'
                
        index: ->
                view = new Raffler.Views.EntriesIndex()
                $('#container').html(view.render().el)
                
                
        show: (id) ->
                alert "entry #{id}"

If I were to replace $('#container').html(view.render().el) with $('#container').html('<h1>Raffler</h1>') , it would produce the desired outcome. I don't think the el attribute has a value.

My /index.jst.coffee file:

javascript
class Raffler.Views.EntriesIndex extends Backbone.View

  template: JST['entries/index']
        
        render: ->
                $(@el).html(@template())
                this

Any help is appreciated!!