Bugfix/separate declaration from exposition (#245)

* Separate definition from exposition

* Suppress previous documentation before generating new one

* Restore deleted line

* Set up verbosity to provide details on what's going on
This commit is contained in:
tetedacier
2018-05-29 18:43:02 +02:00
committed by Jeff Schiller
parent 76db126ec7
commit d098dc0914
7 changed files with 17 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ Math.precision = function (value, precision) {
return Math.round(value * Math.pow(10, precision)) / Math.pow(10, precision);
};
export default function ($) {
const jPicker = function ($) {
if (!$.loadingStylesheets) {
$.loadingStylesheets = [];
}
@@ -1885,3 +1885,5 @@ export default function ($) {
};
return $;
}
export default jPicker;