diaspora/public/javascripts/routers/stream.js
2012-01-07 14:23:21 -08:00

9 lines
157 B
JavaScript

App.Routers.Stream = Backbone.Router.extend({
routes: {
"stream": "stream"
},
stream: function() {
App.stream = new App.Views.Stream;
}
});