define([
'backbone',
'lodash',
'jquery',
], function (
Backbone,
_,
$
) {
/**
* @classdesc Best Parent class ever
* @class
*/
var Parent = Backbone.View.extend({
...
});
return Parent;
});
define([
'Parent',
], function (
Parent
) {
/**
* @classdesc Little children
* @class
* @augments Parent
*/
var Child = Parent.extend({
...
});
return Child;
});