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
3218bb7e
Commit
3218bb7e
authored
Jun 08, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added js loader
parent
1a39aefa
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
8 deletions
+18
-8
public_new/js/chat-add-user.js
+1
-1
public_new/js/chat.js
+1
-1
public_new/js/chatMakeRoom.js
+1
-1
public_new/js/collaboration.js
+1
-1
public_new/js/common.js
+11
-1
public_new/js/contact.js
+1
-1
public_new/js/loading.js
+1
-1
public_new/js/share.js
+1
-1
No files found.
public_new/js/chat-add-user.js
View file @
3218bb7e
// 名前空間
var
CHAT_ADD_USER
=
{};
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
// メンバー検索
$
(
'#chat_add_user .search_form input[type="search"]'
).
click
(
function
(
e
)
{
//画面タイトル設定
...
...
public_new/js/chat.js
View file @
3218bb7e
...
...
@@ -380,7 +380,7 @@ CHAT.leaveRoom = function () {
socket
.
emit
(
"leaveRoom"
,
function
()
{});
};
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
// ルーム名変更イベント
$
(
".change_room_name_btn button"
).
click
(
function
()
{
$
(
"form"
).
submit
();
...
...
public_new/js/chatMakeRoom.js
View file @
3218bb7e
// 名前空間
var
CHAT_MAKE_ROOM
=
{};
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
// メンバー検索
$
(
'#chatMakeRoom .search_form input[type="search"]'
).
click
(
function
(
e
)
{
let
contactListTitle
=
getLocalizedString
(
"userSearch"
);
...
...
public_new/js/collaboration.js
View file @
3218bb7e
...
...
@@ -88,7 +88,7 @@ function recordFinished() {
delete_dom_obj
(
"screenLock"
);
}
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
// メニューオーバーレイ表示
$
(
".menu_btn"
).
click
(
function
()
{
var
w
=
$
(
this
).
width
();
...
...
public_new/js/common.js
View file @
3218bb7e
function
includeJs
(
jsFilePath
)
{
var
js
=
document
.
createElement
(
"script"
);
js
.
type
=
"text/javascript"
;
js
.
src
=
jsFilePath
;
document
.
body
.
appendChild
(
js
);
}
// アコーディオン
$
(
".category"
).
on
(
"click"
,
function
()
{
$
(
this
).
toggleClass
(
"open"
);
...
...
@@ -11,7 +20,8 @@ $(".home_btn").on("click", function () {
webkit
.
messageHandlers
.
goHome
.
postMessage
({});
}
});
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
var
h
=
$
(
window
).
height
();
//画面の高さを取得
// ローディング表示
...
...
public_new/js/contact.js
View file @
3218bb7e
// 名前空間
var
CONTACT
=
{};
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
// メンバー検索
$
(
'#contact .search_form input[type="search"]'
).
keyup
(
function
(
e
)
{
var
keyword
=
$
(
'#contact .search_form input[type="search"]'
).
val
();
...
...
public_new/js/loading.js
View file @
3218bb7e
...
...
@@ -4,7 +4,7 @@ $(window).on("load", function () {
$
(
"#loader"
).
delay
(
600
).
fadeOut
(
300
);
});
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
setTimeout
(
"stopload()"
,
3000
);
//いつまでもローディング状態にならないように10秒で強制表示させる
});
...
...
public_new/js/share.js
View file @
3218bb7e
...
...
@@ -9,7 +9,7 @@ let timeInterval = null;
var
backgroundFileName
;
var
isIos
;
$
(
function
()
{
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
var
coviewApiActive
=
coview_api
.
Init
({
testSTRParam
:
"param1"
,
testNUMParam
:
77
,
...
...
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