Version 3.0.3

This commit is contained in:
Josh Johnson 2018-01-04 11:35:32 +00:00
parent 3169d8c3d7
commit 40cc462133
7 changed files with 154 additions and 152 deletions

View file

@ -1,4 +1,4 @@
/*! choices.js v3.0.2 | (c) 2018 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
/*! choices.js v3.0.3 | (c) 2018 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
@ -576,7 +576,9 @@ return /******/ (function(modules) { // webpackBootstrap
}, {
key: 'render',
value: function render() {
if (this.store.isLoading()) return;
if (this.store.isLoading()) {
return;
}
this.currentState = this.store.getState();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "choices.js",
"version": "3.0.2",
"version": "3.0.3",
"description": "A vanilla JS customisable text input/select box plugin",
"main": [
"./assets/scripts/dist/choices.js",

View file

@ -16,7 +16,7 @@
<meta name="theme-color" content="#ffffff">
<!-- Ignore these -->
<link rel="stylesheet" href="assets/styles/css/base.min.css?version=3.0.2">
<link rel="stylesheet" href="assets/styles/css/base.min.css?version=3.0.3">
<!-- End ignore these -->
<!-- Optional includes -->
@ -24,7 +24,7 @@
<!-- End optional includes -->
<!-- Choices includes -->
<link rel="stylesheet" href="assets/styles/css/choices.min.css?version=3.0.2">
<link rel="stylesheet" href="assets/styles/css/choices.min.css?version=3.0.3">
<script src="assets/scripts/dist/choices.min.js?version=2.8.8"></script>
<!-- End Choices includes -->

View file

@ -1,6 +1,6 @@
{
"name": "choices.js",
"version": "3.0.2",
"version": "3.0.3",
"description": "A vanilla JS customisable text input/select box plugin",
"main": "./assets/scripts/dist/choices.min.js",
"scripts": {

View file

@ -1,4 +1,4 @@
// Example usage: npm --newVersion=3.0.2 run version
// Example usage: npm --newVersion=3.0.3 run version
const fs = require('fs');
const path = require('path');