first commit

This commit is contained in:
2025-07-18 16:20:14 +07:00
commit 98af45c018
16382 changed files with 3148096 additions and 0 deletions

1
lib/js/jquery.tshift.min.js vendored Normal file
View File

@@ -0,0 +1 @@
(function($) {$.fn.tshift = function() {var start = 0; var checkboxes = $("#"+ this.attr('id') +" :checkbox"); checkboxes.on("click", function(event) {if(this.checked) {if(event.shiftKey) {end = checkboxes.index(this); if(end < start) {end = start; start = checkboxes.index(this); } checkboxes.each(function(index) {if (index >= start && index < end) {this.checked = true; } }); } start = checkboxes.index(this); } }); return this; }; })(jQuery);