remove gitiegnore to public

This commit is contained in:
2026-06-15 11:37:20 +07:00
parent e96d58dcb4
commit bfb1af2417
988 changed files with 308081 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
(function($) {
'use strict';
var iconTochange;
dragula([document.getElementById("dragula-left"), document.getElementById("dragula-right")]);
dragula([document.getElementById("profile-list-left"), document.getElementById("profile-list-right")]);
dragula([document.getElementById("dragula-event-left"), document.getElementById("dragula-event-right")])
.on('drop', function(el) {
console.log($(el));
iconTochange = $(el).find('.typcn');
if (iconTochange.hasClass('typcn-tick')) {
iconTochange.removeClass('typcn-tick text-primary').addClass('typcn-input-checked text-success');
} else if (iconTochange.hasClass('typcn-input-checked')) {
iconTochange.removeClass('typcn-input-checked text-success').addClass('typcn-tick text-primary');
}
})
})(jQuery);