There's a mix of extend happening in app.js and at the module level. I would prioritize one location for these extends so it's consistent at the very least.
My preference is to have all extends in app.js so you can see at a high level how the project handles subclassing and it's scope.
There's a mix of
extend
happening inapp.js
and at the module level. I would prioritize one location for these extends so it's consistent at the very least.My preference is to have all extends in
app.js
so you can see at a high level how the project handles subclassing and it's scope.