Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
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
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCommunication
chat_webview
Commits
cfc95f0a
Commit
cfc95f0a
authored
Aug 18, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed to show loading indicator for inviate user screen loading and header ui fixed
parent
56f6dafa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
public_new/chat_add_user.html
+3
-3
public_new/js/views/chats/chat-room.js
+9
-0
No files found.
public_new/chat_add_user.html
View file @
cfc95f0a
...
...
@@ -21,20 +21,20 @@
<!-- ナビメニュー -->
<nav>
<div
class=
"row h-100 align-items-center"
>
<div
class=
"col-
10
pr-0"
>
<div
class=
"col-
4
pr-0"
>
<div
class=
"nav-item"
>
<div
class=
"nav_prev"
>
<a
href=
"chat_room.html"
><span>
ルーム
</span></a>
</div>
</div>
</div>
<div
class=
"col-4 p-0"
>
<div
class=
"nav-item p-0"
>
<h1
class=
"nav-ttl"
id=
"addUserTitle"
>
ユーザー招待
</h1>
</div>
</div>
<div
class=
"col-4 pl-0"
>
<div
class=
"nav-item text-right"
>
</div>
<div
class=
"nav-item text-right"
></div>
</div>
<!-- .col -->
</div>
<!-- .row -->
</nav>
<!-- nav -->
...
...
public_new/js/views/chats/chat-room.js
View file @
cfc95f0a
...
...
@@ -61,6 +61,9 @@ document.addEventListener("DOMContentLoaded", function () {
// 下スクロールでユーザーリストを非表示
ChatRoom
.
bindUserListDisplayToggle
();
// invite button イベントバインディング
ChatRoom
.
bindUserInviteButton
();
});
ChatRoom
.
bindResize
=
function
()
{
...
...
@@ -143,6 +146,12 @@ ChatRoom.bindUserListDisplayToggle = function () {
});
};
ChatRoom
.
bindUserInviteButton
=
function
()
{
$
(
"#add_user_button"
).
on
(
"click"
,
function
(
e
)
{
NativeBridgeDelegate
.
showLoadingIndicator
();
});
};
// 画像の読み込みが全て終わったタイミングでコールバック実行
// FIXME 追加読み込みの場合は差分の画像のみ監視すべきだが、現状新規入室時にしか対応出来ていない。
ChatRoom
.
waitForLoadingVideo
=
function
(
div
,
callback
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment