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.