- Linting (ESLint): Apply per jsdoc improvements

- npm: Update devDeps (linting, Babel, axe testing)
This commit is contained in:
Brett Zamir
2019-07-09 08:33:18 +08:00
parent 2d53e0c42e
commit aa96a35f45
12 changed files with 148 additions and 162 deletions

View File

@@ -50,7 +50,6 @@
* | v1.9 | 20 May 2018 | Brett Zamir | Avoid SVGEdit dependency via `stateObj` config;<br />convert to ES6 module |
* @module jQuerySpinButton
* @example
// Create group of settings to initialise spinbutton(s). (Optional)
const myOptions = {
min: 0, // Set lower limit.
@@ -65,7 +64,7 @@
$(function () {
// Initialise INPUT element(s) as SpinButtons: (passing options if desired)
$("#myInputElement").SpinButton(myOptions);
$('#myInputElement').SpinButton(myOptions);
});
*/
/**