Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
C
chat_webview
  • Overview
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • abookCommunication
  • chat_webview
  • Merge Requests
  • !8

Merged
Opened Mar 24, 2021 by Lee Munkyeong@lee-mk 4 of 4 tasks completed4/4 tasks
  • Report abuse
Report abuse

Origin/develop apply design contant

  • @kim-p
  • @miura-t
  • @kang-dh
  • @lee-dh
Edited Mar 26, 2021 by Kim Peace
  • Discussion 16
  • Commits 7
  • Changes 33
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-db.js 0 → 100644
    3
    4
    5 //ロカールDBからルーム一覧情報を取得
    6 CHAT_DB.getRoomList = function(roomType) {
    7 if (CHAT_UTIL.isIOS()) {
    8 //TODO IOS処理追加必要
    9 } else if (CHAT_UTIL.isAndroid()) {
    10 //String形式をJsonに変更してReturn
    11 return JSON.parse(android.getRoomList(roomType));
    12 }
    13 };
    14
    15 //ロカールDBからログインしたユーザのデータを取得する。
    16 CHAT_DB.getMyInfo = function(input) {
    17 var result = JSON.parse(android.getMyInfo());
    18 CHAT.globalLoginParameter.shopMemberId = result.shopMemberId;
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      = result.shopMemberId;スペースを合わしてください

      Edited Mar 24, 2021
      `= result.shopMemberId;`スペースを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#c1527ce3525c5e749b67c459cb5bdec9a54832a3_18_18)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    33 function setSocketAction () {
    34 socket.on('connect', function() {
    35 // socketが接続されたらチャット画面で画面を更新する
    36 $('.overlay').removeClass('active undismissable');
    37 // loadingIndicatorを表示
    38 CHAT_UI.showLoadingIndicator();
    39 // チャットルームに入場する際、sid, loginId, shopName, roomId, roomNameの情報を取得しNodeJsに渡す
    40 if (CHAT_UTIL.isIOS()) {
    41 webkit.messageHandlers.loginInfoRequestMessageHandlerId.postMessage({});
    42 } else if (CHAT_UTIL.isAndroid()) {
    43 android.getLoginParameter();
    44 }
    45 CHAT_UI.dismissLoadingIndicator();
    46 });
    47
    48 socket.on('disconnect', function (){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      function (){インデントを合わしてください

      Edited Mar 24, 2021
      `function (){`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_48_48)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    41 webkit.messageHandlers.loginInfoRequestMessageHandlerId.postMessage({});
    42 } else if (CHAT_UTIL.isAndroid()) {
    43 android.getLoginParameter();
    44 }
    45 CHAT_UI.dismissLoadingIndicator();
    46 });
    47
    48 socket.on('disconnect', function (){
    49 console.log('disconnect');
    50 //socketが切断されたら黒画面で画面を更新する
    51 $('.overlay').addClass('active undismissable');
    52 //alert('Disconnected from the server');
    53 CHAT_UI.dismissLoadingIndicator();
    54 });
    55
    56 socket.on('connect_error', function (){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      function (){インデントを合わしてください

      Edited Mar 24, 2021
      `function (){`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_56_56)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    159 // Rotate
    160 if(CHAT_UI.isLandscapeMode()) {
    161 $(".chat_list").removeClass("col-12").addClass("col-6");
    162 }
    163
    164 $("#userSelectionDeleteBtn").hide();
    165 // チャットルームリスト画面に遷移
    166 $('#pills-chatlist-tab').tab('show');
    167
    168 // loadingIndicatorを表示しない
    169 CHAT_UI.dismissLoadingIndicator();
    170 });*/
    171
    172 // New Message
    173 // #36170
    174 socket.on('newMessage', function (message, roomId, roomName) {
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      function (インデントを合わしてください

      Edited Mar 24, 2021
      `function (`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_174_174)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    192 profileImage: message.profileImagePath,
    193 createdAtDay: messageTime.createdAtDay,
    194 createdAtTime: messageTime.createdAtTime
    195 });
    196 // イメージの場合、img tagを追加する
    197 html = message.text.includes('attachedImages') || message.text.includes('attachedVideos') ? CHAT_UTIL.htmlDecode(html) : html;
    198 $('#messages').append(html);
    199
    200 // 画像、動画の描画を待ってからスクロール
    201 setTimeout(function () {
    202 CHAT_UI.scrollToBottom();
    203 }, 1500);
    204 });
    205
    206 // Notification
    207 socket.on('newNotification', function(keyword, event){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_207_207)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    268 // $('#messages').scroll();
    269 // }
    270 // }
    271 //
    272 // // ユーザ削除ボタン表示しない
    273 // $("#userSelectionDeleteBtn").hide();
    274 //
    275 // CHAT_UI.dismissLoadingIndicator();// add some...
    276 //
    277 // // チャットに遷移する
    278 // $('#pills-chat-tab').tab('show');
    279 // });
    280
    281 // Update User List In Room
    282 // サイドバーのユーザーリストアップデート。
    283 socket.on('updateUserList', function(users, onlineUsers){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_283_283)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    285 $('#users').removeData();
    286 $('#users').data(users);
    287 } else {
    288 const data = $('#users').data();
    289 if (data && Object.keys(data).length > 0){
    290 users = Object.keys(data).map(function(key) {
    291 return data[key];
    292 });
    293 }
    294 }
    295
    296 const ul = $('<ul/>', {class: 'list-unstyled components'});
    297 // ユーザーリストを入れる前にユーザー招待ボタンを入れてくれる。
    298 let inviteString = getLocalizedString("inviteUsersButton")
    299
    300 ul.append($('<li/>').append(`<a>${inviteString} <i class='fa fa-user-plus'><i/></a>`).on('click', function(event){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_300_300)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    382 CHAT_UI.showLoadingIndicator();
    383 if (isInvite) {
    384 $('#pills-chat-tab').tab('show');
    385 } else {
    386 if (IS_ONLINE == 'true') {
    387 android.updateRoomList();
    388 CHAT_UI.refreshRoomList(chatRoomType.DM);
    389 CHAT_UI.dismissLoadingIndicator();
    390 }
    391 }
    392 });
    393 });
    394
    395 // Update User List(Invite)
    396 // #36170
    397 socket.on('refreshUserListInGroup', function(users, groupId, isInvite){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_397_397)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    403 $('.titleRoomName').text(memberSelectTitle);
    404
    405 users.forEach( function(user) {
    406 // loadingIndicatorを表示
    407 CHAT_UI.showLoadingIndicator();
    408
    409 user.profileImagePath = CHAT.getProfileImgUrl(user.profileImagePath)
    410
    411 let html = Mustache.render(template, {
    412 id: user.shopMemberId,
    413 profileImage: user.profileImagePath,
    414 name: user.loginId
    415 });
    416
    417 // クリックするとactive クラスを与え、チェック表示を出させる。
    418 let obj = $(jQuery.parseHTML(html)).on('click',function(){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_418_418)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    446 })
    447 $('.userCheckBox').show();
    448
    449 // Rotate
    450 if (CHAT_UI.isLandscapeMode()) {
    451 $(".user_list").addClass("col-6").removeClass("col-12");
    452 $(".squareBoxContent span").addClass("landscape_span");
    453 }
    454
    455 $('#backButton').off().on('click', function() {
    456 // loadingIndicatorを表示
    457 CHAT_UI.showLoadingIndicator();
    458 socket.emit('getGroupList', isInvite)
    459 });
    460
    461 $("#userSelectionConfirmBtn").off().on('click', function(){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_461_461)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun
    @lee-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 24, 2021
    public_new/js/chat-websocket.js 0 → 100644
    463 CHAT_UI.showLoadingIndicator();
    464 CHAT_UI.setConfirmButtonEvent(isInvite);
    465 });
    466
    467 $('#backButton').show();
    468 $('.roomListIcon, .chatRoomIcon').hide();
    469 $('#userSelectionConfirmBtn').show();
    470 $('.userCheckBox').show();
    471 $('#pills-user-tab').tab('show');
    472 });
    473
    474 /* ---------------------------------------------------------------------- */
    475 /* Show Error Log */
    476 /* ---------------------------------------------------------------------- */
    477
    478 socket.on('showServerError', function (message){
    • Lee Daehyun @lee-dh commented Mar 24, 2021
      Developer

      {インデントを合わしてください

      Edited Mar 24, 2021
      `{`インデントを合わしてください
    • Lee Munkyeong @lee-mk

      changed this line in version 2 of the diff

      Mar 24, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca#2d59aff3f7b30c93f30c787fc0c94b7dc62ac323_478_478)
      Toggle commit list
    Please register or sign in to reply
  • Lee Daehyun @lee-dh

    assigned to @lee-mk

    Mar 24, 2021

    assigned to @lee-mk

    assigned to @lee-mk
    Toggle commit list
  • Lee Daehyun @lee-dh

    marked the task @lee-dh as completed

    Mar 24, 2021

    marked the task @lee-dh as completed

    marked the task **@lee-dh** as completed
    Toggle commit list
  • Lee Munkyeong @lee-mk

    added 1 commit

    • 6f694ccd - コードレビュー対応。

    Compare with previous version

    Mar 24, 2021

    added 1 commit

    • 6f694ccd - コードレビュー対応。

    Compare with previous version

    added 1 commit * 6f694ccd - コードレビュー対応。 [Compare with previous version](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5527&start_sha=78f28fa1927fc7842e40e948fb2dc7f867cedcca)
    Toggle commit list
  • Lee Munkyeong @lee-mk

    resolved all discussions

    Mar 24, 2021

    resolved all discussions

    resolved all discussions
    Toggle commit list
  • Lee Munkyeong @lee-mk

    assigned to @kang-dh

    Mar 24, 2021

    assigned to @kang-dh

    assigned to @kang-dh
    Toggle commit list
  • Kang Donghun
    @kang-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 25, 2021
    public_new/template/template_group_list.html 0 → 100644
    1 <li class="d-flex align-items-center">
    2 <a href="#" class="w-100" onclick="CHAT_UI.refesshAllGroupSearch({{id}});">
    • Kang Donghun @kang-dh commented Mar 24, 2021
      Developer

      refesshAllGroupSearch -> refreshAllGroupSearch

      Edited Mar 25, 2021
      `refesshAllGroupSearch` -> `refreshAllGroupSearch`
    • Lee Munkyeong @lee-mk

      changed this line in version 3 of the diff

      Mar 25, 2021

      changed this line in version 3 of the diff

      changed this line in [version 3 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5530&start_sha=6f694ccd324d87067ffbf487ec06839cc3c3dd64#8da983a6260b83c0fb259b02b02609f3c644c26c_2_2)
      Toggle commit list
    Please register or sign in to reply
  • Kang Donghun
    @kang-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 25, 2021
    public_new/template/template_group_list.html 0 → 100644
    1 <li class="d-flex align-items-center">
    2 <a href="#" class="w-100" onclick="CHAT_UI.refesshAllGroupSearch({{id}});">
    3 <div class="chat_item d-flex flex-row align-items-center">
    4 <div class="chat_item_l">
    5 <div class="thubnail">
    • Kang Donghun @kang-dh commented Mar 24, 2021
      Developer

      thubnail -> thumbnail

      Edited Mar 25, 2021
      `thubnail` -> `thumbnail`
    • Lee Munkyeong @lee-mk

      changed this line in version 3 of the diff

      Mar 25, 2021

      changed this line in version 3 of the diff

      changed this line in [version 3 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5530&start_sha=6f694ccd324d87067ffbf487ec06839cc3c3dd64#8da983a6260b83c0fb259b02b02609f3c644c26c_5_5)
      Toggle commit list
    Please register or sign in to reply
  • Kang Donghun
    @kang-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 25, 2021
    public_new/template/template_group_path.html 0 → 100644
    1 <a href="#" class="breadcrumb_item" onclick="CHAT_UI.refesshAllGroupSearch({{id}});"><span>{{name}}</span></a>
    • Kang Donghun @kang-dh commented Mar 24, 2021
      Developer

      refesshAllGroupSearch -> refreshAllGroupSearch

      Edited Mar 25, 2021
      `refesshAllGroupSearch` -> `refreshAllGroupSearch`
    • Lee Munkyeong @lee-mk

      changed this line in version 3 of the diff

      Mar 25, 2021

      changed this line in version 3 of the diff

      changed this line in [version 3 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5530&start_sha=6f694ccd324d87067ffbf487ec06839cc3c3dd64#f5d4b8848d8b98bd4cabbd915e73580e82756724_1_1)
      Toggle commit list
    Please register or sign in to reply
  • Kang Donghun
    @kang-dh started a discussion on an old version of the diff Mar 24, 2021
    Resolved by Lee Munkyeong Mar 25, 2021
    public_new/template/template_user_name_card.html 0 → 100644
    1 <div class="modal fade profile_modal" id="userNameCard" tabindex="-1" role="dialog" aria-labelledby="userNameCard" aria-hidden="true">
    2 <div class="modal-dialog modal-dialog-centered" role="document">
    3 <div class="modal-content">
    4 <div class="modal-header border-0">
    5 <div class="prifile_desc d-flex flex-row">
    • Kang Donghun @kang-dh commented Mar 24, 2021
      Developer

      prifile_desc -> profile_desc

      Edited Mar 25, 2021
      `prifile_desc` -> `profile_desc`
    • Lee Munkyeong @lee-mk

      changed this line in version 3 of the diff

      Mar 25, 2021

      changed this line in version 3 of the diff

      changed this line in [version 3 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5530&start_sha=6f694ccd324d87067ffbf487ec06839cc3c3dd64#ddead13c4f4362c9ee07b57a4e389592cef6c70b_5_5)
      Toggle commit list
    Please register or sign in to reply
  • Kang Donghun @kang-dh

    assigned to @lee-mk

    Mar 24, 2021

    assigned to @lee-mk

    assigned to @lee-mk
    Toggle commit list
  • Lee Munkyeong @lee-mk

    added 1 commit

    • ccb4959a - コードレビュー対応。

    Compare with previous version

    Mar 25, 2021

    added 1 commit

    • ccb4959a - コードレビュー対応。

    Compare with previous version

    added 1 commit * ccb4959a - コードレビュー対応。 [Compare with previous version](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5530&start_sha=6f694ccd324d87067ffbf487ec06839cc3c3dd64)
    Toggle commit list
  • Lee Munkyeong @lee-mk

    resolved all discussions

    Mar 25, 2021

    resolved all discussions

    resolved all discussions
    Toggle commit list
  • Lee Munkyeong @lee-mk

    assigned to @kang-dh

    Mar 25, 2021

    assigned to @kang-dh

    assigned to @kang-dh
    Toggle commit list
  • Kang Donghun @kang-dh

    marked the task @kang-dh as completed

    Mar 26, 2021

    marked the task @kang-dh as completed

    marked the task **@kang-dh** as completed
    Toggle commit list
  • Kang Donghun @kang-dh

    assigned to @lee-mk

    Mar 26, 2021

    assigned to @lee-mk

    assigned to @lee-mk
    Toggle commit list
  • Lee Munkyeong @lee-mk

    assigned to @miura-t

    Mar 26, 2021

    assigned to @miura-t

    assigned to @miura-t
    Toggle commit list
  • Takatoshi Miura
    @miura-t started a discussion on an old version of the diff Mar 26, 2021
    Last updated by Lee Munkyeong Mar 26, 2021
    public_new/js/chat-ui.js 0 → 100644
    12
    13 if(CHAT_UI.isLandscapeMode()) {
    14 $(".group_list").addClass("col-6").removeClass("col-12");
    15 $(".user_list").addClass("col-6").removeClass("col-12");
    16 $(".chat_list").addClass("col-6").removeClass("col-12");
    17 $(".squareBoxContent span").addClass("landscape_span");
    18
    19 $(".mesgs").addClass("landscape_mesgs");
    20 } else {
    21
    22 $(".group_list").removeClass("col-6").addClass("col-12");
    23 $(".user_list").removeClass("col-6").addClass("col-12");
    24 $(".chat_list").removeClass("col-6").addClass("col-12");
    25 $(".squareBoxContent span").removeClass("landscape_span");
    26
    27 $(".mesgs").removeClass("landscape_mesgs");
    • Takatoshi Miura @miura-t commented Mar 26, 2021
      Developer

      インデントを合わせてください。

      インデントを合わせてください。
    • Lee Munkyeong @lee-mk

      changed this line in version 4 of the diff

      Mar 26, 2021

      changed this line in version 4 of the diff

      changed this line in [version 4 of the diff](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5539&start_sha=ccb4959a69f62454afcc85f5e495510edf24eb65#cb43321944b8dcb1e2b3b87cea1e1f7c22f3d3cf_27_27)
      Toggle commit list
    Please register or sign in to reply
  • Takatoshi Miura @miura-t

    assigned to @lee-mk

    Mar 26, 2021

    assigned to @lee-mk

    assigned to @lee-mk
    Toggle commit list
  • Lee Munkyeong @lee-mk

    added 1 commit

    • c38bbcc4 - インデント修正。

    Compare with previous version

    Mar 26, 2021

    added 1 commit

    • c38bbcc4 - インデント修正。

    Compare with previous version

    added 1 commit * c38bbcc4 - インデント修正。 [Compare with previous version](https://gitlab.agentec.jp/abookCommunication/chat_webview/merge_requests/8/diffs?diff_id=5539&start_sha=ccb4959a69f62454afcc85f5e495510edf24eb65)
    Toggle commit list
  • Lee Munkyeong @lee-mk

    assigned to @miura-t

    Mar 26, 2021

    assigned to @miura-t

    assigned to @miura-t
    Toggle commit list
  • Takatoshi Miura @miura-t

    marked the task @miura-t as completed

    Mar 26, 2021

    marked the task @miura-t as completed

    marked the task **@miura-t** as completed
    Toggle commit list
  • Takatoshi Miura @miura-t

    assigned to @lee-mk

    Mar 26, 2021

    assigned to @lee-mk

    assigned to @lee-mk
    Toggle commit list
  • Lee Munkyeong @lee-mk

    assigned to @kim-p

    Mar 26, 2021

    assigned to @kim-p

    assigned to @kim-p
    Toggle commit list
  • Kim Peace @kim-p

    marked the task @kim-p as completed

    Mar 26, 2021

    marked the task @kim-p as completed

    marked the task **@kim-p** as completed
    Toggle commit list
  • Kim Peace @kim-p

    assigned to @lee-mk

    Mar 26, 2021

    assigned to @lee-mk

    assigned to @lee-mk
    Toggle commit list
  • Lee Munkyeong @lee-mk

    merged

    Mar 26, 2021

    merged

    merged
    Toggle commit list
  • Lee Munkyeong @lee-mk

    mentioned in commit 643b084a

    Mar 26, 2021

    mentioned in commit 643b084a

    mentioned in commit 643b084a0ab9fe1e737d7f4783abec0b7a78940e
    Toggle commit list
  • Write
  • Preview
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 sign in to comment
Lee Munkyeong
Assignee
Lee Munkyeong @lee-mk
Assign to
None
Milestone
None
Assign milestone
Time tracking
5
5 participants
Reference: abookCommunication/chat_webview!8
×

Revert this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.
×

Cherry-pick this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.