Is this normal in Backbone that after a .remove() on a view I'm still able to access the events object via console.log ?
var View = Backbone.View.extend({
initialize : function () {
console.log("hey");
},
events: {
"click ul#products li a": "item"
}
});
var vi = new View;
vi.off();
vi.remove();
vi.undelegateEvents();
console.log(vi);