9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
App.Routers.Stream = Backbone.Router.extend({
|
|
routes: {
|
|
"stream": "stream"
|
|
},
|
|
|
|
stream: function() {
|
|
App.stream = new App.Views.Stream;
|
|
}
|
|
});
|