Skip to content

Commit

Permalink
Release version 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patosai committed Apr 17, 2019
1 parent 9dfeb30 commit 998b859
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.tree-multiselect.css
@@ -1,4 +1,4 @@
/* jQuery Tree Multiselect v2.6.0 | (c) Patrick Tsai | MIT Licensed */
/* jQuery Tree Multiselect v2.6.1 | (c) Patrick Tsai | MIT Licensed */
div.tree-multiselect {
border: 2px solid #D8D8D8;
border-radius: 5px;
Expand Down
6 changes: 2 additions & 4 deletions dist/jquery.tree-multiselect.js
@@ -1,4 +1,4 @@
/* jQuery Tree Multiselect v2.6.0 | (c) Patrick Tsai | MIT Licensed */
/* jQuery Tree Multiselect v2.6.1 | (c) Patrick Tsai | MIT Licensed */
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
'use strict';

Expand Down Expand Up @@ -640,9 +640,7 @@ Tree.prototype.redrawSectionCheckboxes = function ($section) {
if (returnVal) {
var $childCheckboxes = $section.find('> div.item > input[type=checkbox]');
for (var ii = 0; ii < $childCheckboxes.length; ++ii) {
if ($childCheckboxes[ii].disabled) {
// do nothing
} else if ($childCheckboxes[ii].checked) {
if ($childCheckboxes[ii].checked) {
returnVal &= ~2;
} else {
returnVal &= ~1;
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.tree-multiselect.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 998b859

Please sign in to comment.