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
8c0c69a1
Commit
8c0c69a1
authored
3 years ago
by
Kim Peace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unified js import
parent
d10b9423
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
363 additions
and
372 deletions
+363
-372
public_new/archive.html
+18
-25
public_new/archive_detail.html
+6
-18
public_new/chat.html
+5
-16
public_new/chat_add_user.html
+22
-31
public_new/chat_add_user_confirm.html
+7
-19
public_new/chat_change_room_name.html
+4
-21
public_new/chat_make_room.html
+13
-22
public_new/chat_make_room_confirm.html
+12
-22
public_new/chat_room.html
+6
-22
public_new/collaboration.html
+12
-27
public_new/collaboration_documents.html
+8
-25
public_new/collaboration_picture.html
+6
-23
public_new/collaboration_video.html
+6
-23
public_new/collaboration_voice.html
+7
-23
public_new/collaboration_whiteboard.html
+6
-23
public_new/contact.html
+17
-25
public_new/js/chat-websocket.js
+1
-0
public_new/js/collaboration.js
+10
-7
public_new/js/common-js-importer.js
+31
-0
public_new/js/common/NativeBridge.js
+166
-0
No files found.
public_new/archive.html
View file @
8c0c69a1
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
<link
rel=
"stylesheet"
href=
"./css/font-awesome.css"
>
<link
rel=
"stylesheet"
href=
"./css/font-awesome.css"
>
<script>
<script>
window
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
window
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
CHAT_UI
.
refreshArchiveScreen
();
CHAT_UI
.
refreshArchiveScreen
();
});
});
</script>
</script>
...
@@ -91,26 +91,17 @@
...
@@ -91,26 +91,17 @@
</div>
</div>
</footer>
</footer>
<div
id=
"loadingArea"
></div>
<div
id=
"loadingArea"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/archive.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
id=
"archive-template"
type=
"text/template"
>
<!-- Import JS -->
<script
src=
"./js/common-js-importer.js"
></script>
<!-- view -->
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/archive.js"
></script>
<!-- Template archive -->
<script
id=
"archive-template"
type=
"text/template"
>
<
li
class
=
"d-flex align-items-center"
>
<
li
class
=
"d-flex align-items-center"
>
<
a
href
=
"archive_detail.html?archiveId={{archiveId}}"
class
=
"w-100"
>
<
a
href
=
"archive_detail.html?archiveId={{archiveId}}"
class
=
"w-100"
>
<
div
class
=
"archive_item d-flex flex-row align-items-center w-100"
>
<
div
class
=
"archive_item d-flex flex-row align-items-center w-100"
>
...
@@ -130,9 +121,10 @@
...
@@ -130,9 +121,10 @@
<
/div
>
<
/div
>
<
/a
>
<
/a
>
<
/li
>
<
/li
>
</script>
</script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
}
}
...
@@ -144,7 +136,7 @@
...
@@ -144,7 +136,7 @@
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
$
(
"#chatMenuModal"
).
load
(
"./modal_chat_menu.html"
);
$
(
"#chatMenuModal"
).
load
(
"./modal_chat_menu.html"
);
$
(
"#loadingArea"
).
load
(
"./loading.html"
);
$
(
"#loadingArea"
).
load
(
"./loading.html"
);
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
}
else
{
}
else
{
...
@@ -160,7 +152,7 @@
...
@@ -160,7 +152,7 @@
IS_ONLINE
=
isOnline
;
IS_ONLINE
=
isOnline
;
CHAT_UI
.
refreshArchiveScreen
();
CHAT_UI
.
refreshArchiveScreen
();
};
};
</script>
</script>
</body>
</body>
</html>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
public_new/archive_detail.html
View file @
8c0c69a1
...
@@ -65,26 +65,12 @@
...
@@ -65,26 +65,12 @@
<!-- ローディング -->
<!-- ローディング -->
<div
id=
"userProfileModal"
></div>
<div
id=
"userProfileModal"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- import js -->
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<!-- view -->
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/archive.js"
></script>
<script
src=
"./js/archive.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<!-- Template archive-detail -->
<script
id=
"archive-detail-template"
type=
"text/template"
>
<script
id=
"archive-detail-template"
type=
"text/template"
>
<
div
id
=
"archive_player"
class
=
"player"
>
<
div
id
=
"archive_player"
class
=
"player"
>
<
/div
>
<
/div
>
...
@@ -121,6 +107,7 @@
...
@@ -121,6 +107,7 @@
<
/div
>
<
/div
>
</script>
</script>
<!-- Template archive-user -->
<script
id=
"archive-user-template"
type=
"text/template"
>
<script
id=
"archive-user-template"
type=
"text/template"
>
<
li
class
=
"archive_user"
>
<
li
class
=
"archive_user"
>
<
img
src
=
"{{profileImage}}"
alt
=
""
>
<
img
src
=
"{{profileImage}}"
alt
=
""
>
...
@@ -128,6 +115,7 @@
...
@@ -128,6 +115,7 @@
<
/li
>
<
/li
>
</script>
</script>
<!-- Template archive-namecard -->
<script
id=
"archive-namecard-template"
type=
"text/template"
>
<script
id=
"archive-namecard-template"
type=
"text/template"
>
<
div
class
=
"modal fade profile_modal"
id
=
"userNameCard"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"userNameCard"
aria
-
hidden
=
"true"
>
<
div
class
=
"modal fade profile_modal"
id
=
"userNameCard"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"userNameCard"
aria
-
hidden
=
"true"
>
<
div
class
=
"modal-dialog modal-dialog-centered"
role
=
"document"
>
<
div
class
=
"modal-dialog modal-dialog-centered"
role
=
"document"
>
...
...
This diff is collapsed.
Click to expand it.
public_new/chat.html
View file @
8c0c69a1
...
@@ -98,24 +98,13 @@
...
@@ -98,24 +98,13 @@
</div>
</div>
</footer>
</footer>
<div
id=
"loadingArea"
></div>
<div
id=
"loadingArea"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
...
...
This diff is collapsed.
Click to expand it.
public_new/chat_add_user.html
View file @
8c0c69a1
...
@@ -18,8 +18,8 @@
...
@@ -18,8 +18,8 @@
</head>
</head>
<body>
<body>
<!-- ナビメニュー -->
<!-- ナビメニュー -->
<nav>
<nav>
<div
class=
"row h-100 align-items-center"
>
<div
class=
"row h-100 align-items-center"
>
<div
class=
"col-4 pr-0"
>
<div
class=
"col-4 pr-0"
>
<div
class=
"nav-item"
>
<div
class=
"nav-item"
>
...
@@ -38,10 +38,10 @@
...
@@ -38,10 +38,10 @@
</div>
</div>
</div>
<!-- .col -->
</div>
<!-- .col -->
</div>
<!-- .row -->
</div>
<!-- .row -->
</nav>
<!-- nav -->
</nav>
<!-- nav -->
<!-- コンテンツ -->
<!-- コンテンツ -->
<main
id=
"chat_add_user"
>
<main
id=
"chat_add_user"
>
<form
id=
"addUserForm"
action=
"chat_add_user_confirm.html"
method=
"post"
>
<form
id=
"addUserForm"
action=
"chat_add_user_confirm.html"
method=
"post"
>
<!-- ユーザー検索 -->
<!-- ユーザー検索 -->
<div
class=
"search_form my-2"
>
<div
class=
"search_form my-2"
>
...
@@ -60,7 +60,9 @@
...
@@ -60,7 +60,9 @@
<div
class=
"tab_content"
id=
"tab1_content"
>
<div
class=
"tab_content"
id=
"tab1_content"
>
<div
class=
"chat_list"
>
<div
class=
"chat_list"
>
<!-- お気に入りグループ -->
<!-- お気に入りグループ -->
<div
class=
"category"
><div
class=
"category_name"
><span>
お気に入り
</span></div></div>
<div
class=
"category"
>
<div
class=
"category_name"
><span>
お気に入り
</span></div>
</div>
<div
id=
"favoriteListForMakeRoom"
></div>
<div
id=
"favoriteListForMakeRoom"
></div>
<div
id=
"myGroupListForMakeRoom"
></div>
<div
id=
"myGroupListForMakeRoom"
></div>
</div>
</div>
...
@@ -123,29 +125,18 @@
...
@@ -123,29 +125,18 @@
<span
class=
"select_member_num"
></span><span
class=
"select_member"
>
名 選択中
</span></button>
<span
class=
"select_member_num"
></span><span
class=
"select_member"
>
名 選択中
</span></button>
</div>
</div>
</form>
</form>
</main>
</main>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/chat-add-user.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/language.js"
></script>
<script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/chat-add-user.js"
></script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
}
}
...
@@ -156,7 +147,7 @@
...
@@ -156,7 +147,7 @@
let
IS_MOBILE
=
true
;
let
IS_MOBILE
=
true
;
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
}
else
{
}
else
{
...
@@ -172,7 +163,7 @@
...
@@ -172,7 +163,7 @@
IS_ONLINE
=
isOnline
;
IS_ONLINE
=
isOnline
;
if
(
CHAT_DB
.
loadSelectedUsers
()
!=
""
)
{
if
(
CHAT_DB
.
loadSelectedUsers
()
!=
""
)
{
let
selectedUsers
=
CHAT_DB
.
loadSelectedUsers
();
let
selectedUsers
=
CHAT_DB
.
loadSelectedUsers
();
selectedUsers
.
forEach
(
function
(
user
)
{
selectedUsers
.
forEach
(
function
(
user
)
{
CHAT
.
globalSelectedUserList
.
push
(
user
.
shopMemberId
);
CHAT
.
globalSelectedUserList
.
push
(
user
.
shopMemberId
);
})
})
};
};
...
...
This diff is collapsed.
Click to expand it.
public_new/chat_add_user_confirm.html
View file @
8c0c69a1
...
@@ -57,27 +57,15 @@
...
@@ -57,27 +57,15 @@
</form>
</form>
</main>
</main>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- Import JS -->
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
}
}
let
CHAT_SERVER_URL
=
''
;
let
CHAT_SERVER_URL
=
''
;
...
@@ -86,7 +74,7 @@
...
@@ -86,7 +74,7 @@
let
PLATFORM
=
''
;
let
PLATFORM
=
''
;
let
IS_MOBILE
=
true
;
let
IS_MOBILE
=
true
;
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
public_new/chat_change_room_name.html
View file @
8c0c69a1
...
@@ -56,30 +56,13 @@
...
@@ -56,30 +56,13 @@
</div>
</div>
</main>
</main>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/socket.io.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<!-- View -->
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"./js/chat-room.js"
></script>
<script
src=
"./js/chat-room.js"
></script>
<script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
...
...
This diff is collapsed.
Click to expand it.
public_new/chat_make_room.html
View file @
8c0c69a1
...
@@ -60,7 +60,9 @@
...
@@ -60,7 +60,9 @@
<div
class=
"tab_content"
id=
"tab1_content"
>
<div
class=
"tab_content"
id=
"tab1_content"
>
<div
class=
"chat_list"
>
<div
class=
"chat_list"
>
<!-- お気に入りグループ -->
<!-- お気に入りグループ -->
<div
class=
"category"
><div
class=
"category_name"
><span>
お気に入り
</span></div></div>
<div
class=
"category"
>
<div
class=
"category_name"
><span>
お気に入り
</span></div>
</div>
<div
id=
"favoriteListForMakeRoom"
></div>
<div
id=
"favoriteListForMakeRoom"
></div>
<div
id=
"myGroupListForMakeRoom"
></div>
<div
id=
"myGroupListForMakeRoom"
></div>
</div>
</div>
...
@@ -125,28 +127,17 @@
...
@@ -125,28 +127,17 @@
</div>
</div>
</form>
</form>
</main>
</main>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chatMakeRoom.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat
-util
.js"
></script>
<script
src=
"./js/chat
MakeRoom
.js"
></script>
<script
src=
"./js/
chat-db
.js"
></script>
<script
src=
"./js/
loading
.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
}
}
...
@@ -156,7 +147,7 @@
...
@@ -156,7 +147,7 @@
let
PLATFORM
=
''
;
let
PLATFORM
=
''
;
let
IS_MOBILE
=
true
;
let
IS_MOBILE
=
true
;
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
}
else
{
}
else
{
...
@@ -172,7 +163,7 @@
...
@@ -172,7 +163,7 @@
IS_ONLINE
=
isOnline
;
IS_ONLINE
=
isOnline
;
if
(
CHAT_DB
.
loadSelectedUsers
()
!=
""
)
{
if
(
CHAT_DB
.
loadSelectedUsers
()
!=
""
)
{
let
selectedUsers
=
CHAT_DB
.
loadSelectedUsers
();
let
selectedUsers
=
CHAT_DB
.
loadSelectedUsers
();
selectedUsers
.
forEach
(
function
(
user
)
{
selectedUsers
.
forEach
(
function
(
user
)
{
CHAT
.
globalSelectedUserList
.
push
(
user
.
shopMemberId
);
CHAT
.
globalSelectedUserList
.
push
(
user
.
shopMemberId
);
})
})
};
};
...
...
This diff is collapsed.
Click to expand it.
public_new/chat_make_room_confirm.html
View file @
8c0c69a1
...
@@ -43,8 +43,11 @@
...
@@ -43,8 +43,11 @@
<main
id=
"chat_make_room_confirm"
>
<main
id=
"chat_make_room_confirm"
>
<!-- ルーム名入力 -->
<!-- ルーム名入力 -->
<div
class=
"room_name"
>
<div
class=
"room_name"
>
<label><h2>
ルーム名
</h2></label>
<label>
<input
type=
"text"
class=
"input_name_room"
name=
"room_name"
id=
"newRoomName"
placeholder=
"ルーム名を入力してください"
maxlength=
"20"
>
<h2>
ルーム名
</h2>
</label>
<input
type=
"text"
class=
"input_name_room"
name=
"room_name"
id=
"newRoomName"
placeholder=
"ルーム名を入力してください"
maxlength=
"20"
>
</div>
</div>
<!-- 参加者一覧 -->
<!-- 参加者一覧 -->
...
@@ -61,28 +64,15 @@
...
@@ -61,28 +64,15 @@
</div>
</div>
</main>
</main>
<!-- Import JS -->
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<!-- View -->
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
}
}
...
@@ -93,7 +83,7 @@
...
@@ -93,7 +83,7 @@
let
IS_MOBILE
=
true
;
let
IS_MOBILE
=
true
;
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
public_new/chat_room.html
View file @
8c0c69a1
...
@@ -144,31 +144,15 @@
...
@@ -144,31 +144,15 @@
<div
id=
"chatMenuModal"
></div>
<div
id=
"chatMenuModal"
></div>
<div
id=
"pictureModal"
></div>
<div
id=
"pictureModal"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/socket.io.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"./js/chat-room.js"
></script>
<script
src=
"./js/chat-room.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script>
<script>
function
imageModal
(
image
)
{
function
imageModal
(
image
)
{
$
(
'#modal_image'
).
attr
(
'src'
,
image
.
src
);
$
(
'#modal_image'
).
attr
(
'src'
,
image
.
src
);
...
...
This diff is collapsed.
Click to expand it.
public_new/collaboration.html
View file @
8c0c69a1
...
@@ -38,8 +38,7 @@
...
@@ -38,8 +38,7 @@
</div>
</div>
<div
class=
"collabo_nav_r"
>
<div
class=
"collabo_nav_r"
>
<div
class=
"text-right d-flex align-items-center"
>
<div
class=
"text-right d-flex align-items-center"
>
<button
type=
"button"
name=
"button"
<button
type=
"button"
name=
"button"
class=
"btn user_btn"
></button>
class=
"btn user_btn"
></button>
<button
type=
"button"
name=
"button"
class=
"btn add_user_btn none"
></button>
<button
type=
"button"
name=
"button"
class=
"btn add_user_btn none"
></button>
<div
class=
"menu-icon menu_btn host_contents"
onclick=
"this.classList.toggle('hover');"
>
<div
class=
"menu-icon menu_btn host_contents"
onclick=
"this.classList.toggle('hover');"
>
<div
class=
"menu-bar menu-bar1"
></div>
<div
class=
"menu-bar menu-bar1"
></div>
...
@@ -58,7 +57,8 @@
...
@@ -58,7 +57,8 @@
<main
id=
"collabo_main"
class=
"none"
>
<main
id=
"collabo_main"
class=
"none"
>
<div
class=
"document_wrap"
>
<div
class=
"document_wrap"
>
<!-- 音声共有 -->
<!-- 音声共有 -->
<div
class=
"talking_area icon_talking_wrap d-flex flex-column justify-content-center align-items-center h-100 collaboration_contents voice_contents none"
>
<div
class=
"talking_area icon_talking_wrap d-flex flex-column justify-content-center align-items-center h-100 collaboration_contents voice_contents none"
>
<div
class=
"talking_img_wrap"
>
<div
class=
"talking_img_wrap"
>
<img
src=
"icon/icon_talking_white.png"
alt=
"通話中"
>
<img
src=
"icon/icon_talking_white.png"
alt=
"通話中"
>
</div>
</div>
...
@@ -66,7 +66,8 @@
...
@@ -66,7 +66,8 @@
</div>
</div>
<!-- 文書共有 -->
<!-- 文書共有 -->
<div
class=
"start_pip_area d-flex flex-column justify-content-center align-items-center h-100 collaboration_contents document_contents none"
>
<div
class=
"start_pip_area d-flex flex-column justify-content-center align-items-center h-100 collaboration_contents document_contents none"
>
<div
class=
"start_pip_img_wrap"
>
<div
class=
"start_pip_img_wrap"
>
<a
href=
"javascript:startPipMode();"
>
<a
href=
"javascript:startPipMode();"
>
<img
src=
"icon/icon_start_pip.png"
alt=
"文書共有"
>
<img
src=
"icon/icon_start_pip.png"
alt=
"文書共有"
>
...
@@ -123,32 +124,16 @@
...
@@ -123,32 +124,16 @@
<div
class=
"sp sp-circle"
></div>
<div
class=
"sp sp-circle"
></div>
</div>
</div>
</div>
</div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/socket.io.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"./js/share.js"
></script>
<script>
<script>
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/collaboration_documents.html
View file @
8c0c69a1
...
@@ -68,33 +68,16 @@
...
@@ -68,33 +68,16 @@
<div
style=
"vertical-align: middle;display: table-cell;"
>
協業中
<div
style=
"vertical-align: middle;display: table-cell;"
>
協業中
</div>
</div>
</div>
</div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/socket.io.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"./js/share.js"
></script>
<script>
<script>
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/collaboration_picture.html
View file @
8c0c69a1
...
@@ -129,32 +129,15 @@
...
@@ -129,32 +129,15 @@
<!-- フッター -->
<!-- フッター -->
<div
id=
"footer_collabo"
></div>
<div
id=
"footer_collabo"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/socket.io.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"./js/share.js"
></script>
<script>
<script>
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/collaboration_video.html
View file @
8c0c69a1
...
@@ -119,32 +119,15 @@
...
@@ -119,32 +119,15 @@
<!-- フッター -->
<!-- フッター -->
<div
id=
"footer_collabo"
></div>
<div
id=
"footer_collabo"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/socket.io.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"./js/share.js"
></script>
</body>
</body>
<script>
<script>
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/collaboration_voice.html
View file @
8c0c69a1
...
@@ -63,32 +63,16 @@
...
@@ -63,32 +63,16 @@
<!-- フッター -->
<!-- フッター -->
<div
id=
"footer_collabo"
></div>
<div
id=
"footer_collabo"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/socket.io.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"./js/share.js"
></script>
<script>
<script>
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/collaboration_whiteboard.html
View file @
8c0c69a1
...
@@ -121,32 +121,15 @@
...
@@ -121,32 +121,15 @@
<!-- フッター -->
<!-- フッター -->
<div
id=
"footer_collabo"
></div>
<div
id=
"footer_collabo"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/socket.io.js"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-util.js"
></script>
<script
src=
"./js/collaboration.js"
></script>
<script
src=
"./js/chat-db.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/chat-websocket.js"
></script>
<script
src=
"./js/chat-websocket-message.js"
></script>
<script
src=
"./js/chat-websocket-refresh-group-list.js"
></script>
<script
src=
"./js/chat-websocket-refresh-user-list-in-group.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"https://biztaskyell.abookcloud.com/coview_api.js"
></script>
<script
src=
"./js/share.js"
></script>
<script>
<script>
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#footer_collabo"
).
load
(
"./footer_collabo.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
$
(
"#modal_collabo_host_request"
).
load
(
"./modal_collabo_host_request.html"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/contact.html
View file @
8c0c69a1
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
</div>
</div>
<div
class=
"col-4 p-0"
>
<div
class=
"col-4 p-0"
>
<div
class=
"nav-item p-0"
>
<div
class=
"nav-item p-0"
>
<h1
class=
"nav-ttl"
id=
"title"
>
コンタクト
</h1>
<h1
class=
"nav-ttl"
id=
"title"
>
コンタクト
</h1>
</div>
</div>
</div>
</div>
<div
class=
"col-4 pl-0"
>
<div
class=
"col-4 pl-0"
>
...
@@ -65,7 +65,8 @@
...
@@ -65,7 +65,8 @@
<div
class=
"chat_item d-flex flex-row align-items-center"
style=
"background: none !important;"
>
<div
class=
"chat_item d-flex flex-row align-items-center"
style=
"background: none !important;"
>
<div
class=
"chat_item_l"
>
<div
class=
"chat_item_l"
>
<div
class=
"thumbnail"
>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
id=
"myImg"
src=
"img/noImage.png"
onError=
"this.src='./img/noImage.png'"
/></div>
<div
class=
"img_wrap"
><img
id=
"myImg"
src=
"img/noImage.png"
onError=
"this.src='./img/noImage.png'"
/></div>
</div>
</div>
</div>
</div>
<div
class=
"chat_item_m px-0"
>
<div
class=
"chat_item_m px-0"
>
...
@@ -82,7 +83,9 @@
...
@@ -82,7 +83,9 @@
</div>
</div>
<div
class=
"chat_list"
id=
"myContactList"
>
<div
class=
"chat_list"
id=
"myContactList"
>
<!-- お気に入りグループ -->
<!-- お気に入りグループ -->
<div
class=
"category"
><div
class=
"category_name"
><span>
お気に入り
</span></div></div>
<div
class=
"category"
>
<div
class=
"category_name"
><span>
お気に入り
</span></div>
</div>
<div
id=
"favoriteList"
></div>
<div
id=
"favoriteList"
></div>
<div
id=
"myGroupList"
></div>
<div
id=
"myGroupList"
></div>
...
@@ -172,28 +175,17 @@
...
@@ -172,28 +175,17 @@
<div
id=
"loadingArea"
></div>
<div
id=
"loadingArea"
></div>
<div
id=
"myProfileModal"
></div>
<div
id=
"myProfileModal"
></div>
<div
id=
"userProfileModal"
></div>
<div
id=
"userProfileModal"
></div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<!-- Import JS -->
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/common-js-importer.js"
></script>
<script
src=
"./js/libs/locale/ja.js"
charset=
"UTF-8"
></script>
<!-- View -->
<script
src=
"./js/libs/mustache.min.js"
></script>
<script
src=
"./js/libs/bootstrap.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/contact.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_en.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/constant.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/chat-ui.js"
></script>
<script
src=
"./js/c
hat-util
.js"
></script>
<script
src=
"./js/c
ontact
.js"
></script>
<script
src=
"./js/
chat-db
.js"
></script>
<script
src=
"./js/
loading
.js"
></script>
<script
src=
"./js/chat-db-foriOS.js"
></script>
<script>
<script>
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
String
.
prototype
.
replaceAll
=
function
(
org
,
dest
)
{
return
this
.
split
(
org
).
join
(
dest
);
return
this
.
split
(
org
).
join
(
dest
);
}
}
...
@@ -205,7 +197,7 @@
...
@@ -205,7 +197,7 @@
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
$
(
"#loadingArea"
).
load
(
"./loading.html"
);
$
(
"#loadingArea"
).
load
(
"./loading.html"
);
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
}
else
{
}
else
{
...
@@ -220,14 +212,14 @@
...
@@ -220,14 +212,14 @@
IS_ONLINE
=
isOnline
;
IS_ONLINE
=
isOnline
;
let
groupId
;
let
groupId
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
groupId
=
android
.
getToMoveGroupId
();
groupId
=
android
.
getToMoveGroupId
();
}
else
{
}
else
{
groupId
=
CHAT_DB
.
getToMoveGroupId
();
groupId
=
CHAT_DB
.
getToMoveGroupId
();
}
}
if
(
groupId
!=
""
&&
groupId
!=
undefined
)
{
if
(
groupId
!=
""
&&
groupId
!=
undefined
)
{
CHAT_UI
.
refreshAllGroupSearch
(
groupId
);
CHAT_UI
.
refreshAllGroupSearch
(
groupId
);
if
(
typeof
(
android
)
!=
"undefined"
)
{
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
setToMoveGroupId
(
""
);
android
.
setToMoveGroupId
(
""
);
}
else
{
}
else
{
webkit
.
messageHandlers
.
setToMoveGroupId
.
postMessage
(
""
);
webkit
.
messageHandlers
.
setToMoveGroupId
.
postMessage
(
""
);
...
...
This diff is collapsed.
Click to expand it.
public_new/js/chat-websocket.js
View file @
8c0c69a1
...
@@ -3,6 +3,7 @@ var socket;
...
@@ -3,6 +3,7 @@ var socket;
// 名前空間
// 名前空間
var
CHAT_SOCKET
=
{};
var
CHAT_SOCKET
=
{};
includeJs
(
"./js/libs/socket.io.js"
);
includeJs
(
"./js/chat-websocket-message.js"
);
includeJs
(
"./js/chat-websocket-message.js"
);
includeJs
(
"./js/chat-websocket-refresh-group-list.js"
);
includeJs
(
"./js/chat-websocket-refresh-group-list.js"
);
includeJs
(
"./js/chat-websocket-refresh-user-list-in-group.js"
);
includeJs
(
"./js/chat-websocket-refresh-user-list-in-group.js"
);
...
...
This diff is collapsed.
Click to expand it.
public_new/js/collaboration.js
View file @
8c0c69a1
document
.
addEventListener
(
"DOMContentLoaded"
,
function
()
{
includeJs
(
"./js/share.js"
);
document
.
addEventListener
(
"DOMContentLoaded"
,
function
()
{
no_scroll
();
no_scroll
();
// メニューオーバーレイ表示
// メニューオーバーレイ表示
...
@@ -7,7 +8,7 @@
...
@@ -7,7 +8,7 @@
var
w
=
$
(
this
).
width
();
var
w
=
$
(
this
).
width
();
$
(
this
).
toggleClass
(
"hide"
);
$
(
this
).
toggleClass
(
"hide"
);
$
(
'#overlay_menu .item'
).
toggleClass
(
'hide'
);
$
(
"#overlay_menu .item"
).
toggleClass
(
"hide"
);
});
});
// ユーザーリストオーバーレイ表示
// ユーザーリストオーバーレイ表示
...
@@ -19,9 +20,9 @@
...
@@ -19,9 +20,9 @@
.
toggleClass
(
"slidein"
)
.
toggleClass
(
"slidein"
)
.
css
({
transform
:
"translateX("
&
-
w
&
")"
});
.
css
({
transform
:
"translateX("
&
-
w
&
")"
});
if
(
$
(
this
).
hasClass
(
'hide'
))
{
if
(
$
(
this
).
hasClass
(
"hide"
))
{
return_scroll
();
return_scroll
();
}
else
{
}
else
{
scrollTo
(
0
,
0
);
scrollTo
(
0
,
0
);
no_scroll
();
no_scroll
();
}
}
...
@@ -86,11 +87,13 @@ function no_scroll() {
...
@@ -86,11 +87,13 @@ function no_scroll() {
}
}
// スクロール禁止解除
// スクロール禁止解除
function
return_scroll
()
{
function
return_scroll
()
{
document
.
removeEventListener
(
"mousewheel"
,
scroll_control
,
{
passive
:
false
});
document
.
removeEventListener
(
"mousewheel"
,
scroll_control
,
{
document
.
removeEventListener
(
'touchmove'
,
scroll_control
,
{
passive
:
false
});
passive
:
false
,
});
document
.
removeEventListener
(
"touchmove"
,
scroll_control
,
{
passive
:
false
});
}
}
function
scroll_control
(
event
)
{
function
scroll_control
(
event
)
{
if
(
event
.
cancelable
)
{
if
(
event
.
cancelable
)
{
event
.
preventDefault
();
event
.
preventDefault
();
}
}
}
}
This diff is collapsed.
Click to expand it.
public_new/js/common-js-importer.js
0 → 100644
View file @
8c0c69a1
function
includeJs
(
jsFilePath
,
charset
=
""
)
{
var
js
=
document
.
createElement
(
"script"
);
js
.
type
=
"text/javascript"
;
if
(
charset
!=
""
)
{
js
.
charset
=
charset
;
}
js
.
src
=
jsFilePath
;
document
.
body
.
appendChild
(
js
);
}
// Library
includeJs
(
"./js/libs/jquery-3.3.1.min.js"
);
includeJs
(
"./js/libs/moment.js"
);
includeJs
(
"./js/libs/locale/ko.js"
,
"UTF-8"
);
includeJs
(
"./js/libs/locale/ja.js"
,
"UTF-8"
);
includeJs
(
"./js/libs/mustache.min.js"
);
includeJs
(
"./js/libs/bootstrap.min.js"
);
includeJs
(
"./js/libs/jquery.mark.min.js"
);
// Language
includeJs
(
"./js/language.js"
);
includeJs
(
"./js/language_ko.js"
,
"UTF-8"
);
includeJs
(
"./js/language_ja.js"
,
"UTF-8"
);
includeJs
(
"./js/language_en.js"
,
"UTF-8"
);
// Common
includeJs
(
"./js/constant.js"
);
includeJs
(
"./js/common.js"
);
includeJs
(
"./js/chat-util.js"
);
// Model
includeJs
(
"./js/chat-db.js"
);
This diff is collapsed.
Click to expand it.
public_new/js/common/NativeBridge.js
0 → 100644
View file @
8c0c69a1
var
NativeBridge
=
{};
NativeBridge
.
updateRoomList
=
function
()
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
updateRoomList
();
}
else
{
webkit
.
messageHandlers
.
updateRoomList
.
postMessage
({});
}
};
NativeBridge
.
roomDisplayOff
=
function
()
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
roomDisplayOff
();
}
else
{
webkit
.
messageHandlers
.
roomDisplayOff
.
postMessage
({});
}
};
NativeBridge
.
openCommunicationHome
=
function
()
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
openCommunicationHome
();
}
else
{
webkit
.
messageHandlers
.
openCommunicationHome
.
postMessage
({});
}
};
NativeBridge
.
joinRoom
=
function
(
roomID
,
roomName
)
{
if
(
typeof
android
!=
"undefined"
)
{
try
{
android
.
joinRoom
(
roomID
,
roomName
);
}
catch
{
alert
(
getLocalizedString
(
"err_not_exist_room"
));
}
}
else
{
webkit
.
messageHandlers
.
joinRoom
.
postMessage
({
roomId
:
roomID
,
roomName
:
roomName
,
});
}
};
NativeBridge
.
createChatRoom
=
function
(
chatRoomType
,
userIDList
,
newRoomName
,
screenFlag
,
isVoice
)
{
//todo android create room api
if
(
typeof
android
!=
"undefined"
)
{
android
.
createChatRoom
(
chatRoomType
,
userIDList
.
join
(
","
),
newRoomName
,
screenFlag
,
isVoice
);
}
else
{
webkit
.
messageHandlers
.
createChatRoom
.
postMessage
({
roomType
:
chatRoomType
,
userIdList
:
userIDList
.
join
(
","
),
roomName
:
newRoomName
,
screenFlag
:
screenFlag
,
isVoice
:
isVoice
,
});
}
};
NativeBridge
.
updateContactInfo
=
function
()
{
if
(
IS_ONLINE
!=
"true"
)
{
return
;
}
NativeBridge
.
updateGroupInfo
(
"0"
);
if
(
typeof
android
!=
"undefined"
)
{
android
.
updateMyInfo
();
// android.updateGroupUser(); ? is this method included in update group info?
android
.
updateFavorite
();
}
else
{
webkit
.
messageHandlers
.
updateMyInfo
.
postMessage
({});
webkit
.
messageHandlers
.
updateGroupUser
.
postMessage
({});
webkit
.
messageHandlers
.
updateFavorite
.
postMessage
({});
}
};
NativeBridge
.
updateGroupInfo
=
function
(
groupID
)
{
if
(
IS_ONLINE
==
"true"
)
{
if
(
typeof
android
!=
"undefined"
)
{
// TODO: peacekim:: check this method is right or not
android
.
updateGroupUser
();
}
else
{
webkit
.
messageHandlers
.
updateGroupInfo
.
postMessage
(
groupID
);
}
}
};
// todo: peacekim:: it should be datasource
NativeBridge
.
removeFavoriteGroup
=
function
(
groupID
)
{
if
(
CHAT_UTIL
.
isIOS
())
{
const
result
=
callNativeApp
(
NATIVE_KEY_IOS
.
removeFavoriteGroup
,
{
groupId
:
groupID
,
});
return
result
==
"true"
?
true
:
false
;
}
else
{
return
android
.
removeFavoriteGroup
(
groupID
);
}
};
NativeBridge
.
joinCollaboration
=
function
(
collaborationType
,
meetingId
=
0
)
{
if
(
CHAT_UTIL
.
isIOS
())
{
webkit
.
messageHandlers
.
joinCollaboration
.
postMessage
({
collaborationType
:
collaborationType
,
meetingId
:
meetingId
,
});
}
else
if
(
CHAT_UTIL
.
isAndroid
())
{
if
(
collaborationType
==
COLLABORATION_TYPE
.
DOCUMENT
&&
androidVersion
<
ANDROID_SDK_VERSION
.
O
)
{
alert
(
getLocalizedString
(
"not_support_version"
));
return
;
}
android
.
joinCollaboration
(
collaborationType
,
meetingId
);
}
};
NativeBridge
.
joinRoom
=
function
()
{
if
(
CHAT_UTIL
.
isIOS
())
{
webkit
.
messageHandlers
.
joinRoom
.
postMessage
({
roomId
:
roomId
});
}
else
if
(
CHAT_UTIL
.
isAndroid
())
{
android
.
joinRoom
(
roomId
,
""
);
}
};
NativeBridge
.
inviteUsers
=
function
(
userIDList
)
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
inviteUsers
(
userIDList
,
false
);
}
else
{
webkit
.
messageHandlers
.
inviteUsers
.
postMessage
({
userIdList
:
userIDList
,
});
}
};
NativeBridge
.
getLoginParameter
=
function
()
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
getLoginParameter
();
}
else
{
webkit
.
messageHandlers
.
loginInfoRequestMessageHandlerId
.
postMessage
({});
}
};
NativeBridge
.
getGlobalParameter
=
function
()
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
getGlobalParameter
();
}
else
{
webkit
.
messageHandlers
.
getGlobalParameter
.
postMessage
({});
}
};
NativeBridge
.
saveSelectedUserList
=
function
(
selectedUserList
)
{
if
(
typeof
android
!=
"undefined"
)
{
android
.
saveSelectedUserList
(
selectedUserList
);
}
else
{
webkit
.
messageHandlers
.
saveSelectedUserList
.
postMessage
(
selectedUserList
);
}
};
This diff is collapsed.
Click to expand it.
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