zenom
11/12/2010 - 9:06 PM

gistfile1.txt

var Wall = Backbone.Controller.extend({
    routes: {
      "wall": "index"
    },
    
    initialize: function() {
      console.log('controller initialized');
    },
    
    index: function() {
      console.log('here');
    },
    
  });

window.App = new Wall;

# Note:
# When I go to /#wall I don't see anything in the console. I tried just new Wall as well.