pianello-api/resources/js/pages/chat/index.js
Ale Gallo 82f958e5da Committing laravel (part 3)
committing js templating files and components
2023-11-10 16:00:59 +01:00

19 lines
602 B
JavaScript

(function () {
"use strict";
$(".chat-list")
.children()
.each(function () {
$(this).on("click", function () {
$(".chat-box")
.children("div:nth-child(2)")
.fadeOut(300, function () {
$(".chat-box")
.children("div:nth-child(1)")
.fadeIn(300, function (el) {
$(el).removeClass("hidden").removeAttr("style");
});
});
});
});
})();