How would I extend an extended view parent method not to override, keep parents method statements and add some custom code, here is the example case
var SomeView = View.extend({
parentMethod: function() {
//some parent code
}
})
var MyView = SomeView.extend({
parentMethod: function() {
//keep parents statements and extend
}
})