Commit 8241ce0d by Lee Munkyeong

Merge branch 'features/#550_チャットルームの検索でユーザ選択ができない' into 'release_sp3'

クリックイベントのタイミング変更

See merge request !60
parents e22d4630 2878683b
......@@ -314,7 +314,7 @@ $(function() {
})
// フィルタ選択イベント
$('#filter .img_wrap').click(function(){
$(document).on('click', '#filter .img_wrap', function(event) {
// チェックアイコン追加
$(this).toggleClass("filter");
});
......@@ -508,7 +508,7 @@ $(function() {
}
});
$('.filter_img').on('click', function() {
$(document).on('click', '.filter_img', function(event) {
let workVal = "";
var keyword = $('.chat_room_src_form input[type="search"]').val();
$('.overlay_src_msg').empty();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment