| Thread Previous • Date Previous • Date Next • Thread Next |
A very simple module would look like this:
openerp.addons.my_little_module = function(app) {
app.my_little_module.MyLittleWidget = app.web.Widget.extend({
...code...
});
app.web.FormView = app.web.FormView.extend({
...override...
})
}
What are the other possibilities for 'app' ?
| Thread Previous • Date Previous • Date Next • Thread Next |