Skip to content

Commit

Permalink
Updates to release v1.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Sep 19, 2021
1 parent ed19df2 commit 1060db6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions js/checkbox-x.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
(function (factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
define(['jquery', 'window', 'document'], factory);
define(['jquery'], factory);
} else if (typeof module === 'object' && typeof module.exports === 'object') {
factory(require('jquery'), window, document);
factory(require('jquery'));
} else {
factory(window.jQuery, window, document);
factory(window.jQuery);
}
}(function ($, window, document, undefined) {
}(function ($) {
"use strict";

var $h, CheckboxX;
Expand Down
2 changes: 1 addition & 1 deletion js/checkbox-x.min.js

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

0 comments on commit 1060db6

Please sign in to comment.