Rolled back webpack changes in Choices.js

This commit is contained in:
Darren Mackintosh 2019-03-15 16:57:35 +00:00 committed by GitHub
parent 03a45094b7
commit aceb838988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,3 @@
/* eslint-disable import/prefer-default-export */
import Fuse from 'fuse.js';
import merge from 'deepmerge';
@ -44,7 +43,7 @@ import {
* Choices
* @author Josh Johnson<josh@joshuajohnson.co.uk>
*/
export class Choices {
class Choices {
constructor(element = '[data-choice]', userConfig = {}) {
if (isType('String', element)) {
const elements = Array.from(document.querySelectorAll(element));
@ -2084,3 +2083,5 @@ export class Choices {
}
Choices.userDefaults = {};
// We cannot export default here due to Webpack: https://github.com/webpack/webpack/issues/3929
module.exports = Choices;