Skip to content
Snippets Groups Projects
Commit c5c2b485 authored by Géry Debongnie's avatar Géry Debongnie
Browse files

[REF] web: put willStart method before start (AbstractField)

parent 31025540
Branches
Tags
No related merge requests found
......@@ -173,6 +173,14 @@ var AbstractField = Widget.extend({
this.formatOptions = {};
this.parseOptions = {};
},
/**
* Loads the libraries listed in this.jsLibs and this.cssLibs
*
* @override
*/
willStart: function () {
return $.when(ajax.loadLibs(this), this._super.apply(this, arguments));
},
/**
* When a field widget is appended to the DOM, its start method is called,
* and will automatically call render. Most widgets should not override this.
......@@ -187,14 +195,6 @@ var AbstractField = Widget.extend({
return self._render();
});
},
/**
* Loads the libraries listed in this.jsLibs and this.cssLibs
*
* @override
*/
willStart: function () {
return $.when(ajax.loadLibs(this), this._super.apply(this, arguments));
},
//--------------------------------------------------------------------------
// Public
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment