Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
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
abook_web
check
Commits
2fc626f3
Commit
2fc626f3
authored
Feb 19, 2019
by
Ha Jonguk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
課題34、35対応
parent
377a8325
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
abvw/js/home_check.js
+18
-5
No files found.
abvw/js/home_check.js
View file @
2fc626f3
...
...
@@ -687,9 +687,9 @@ HOME_CHECK.returnProjectType = function(projectId) {
};
// Call API
HOME_CHECK
.
checkApi
=
function
(
name
,
params
,
method
,
callback
)
{
HOME_CHECK
.
checkApi
=
function
(
name
,
params
,
method
,
callback
,
errorCallback
)
{
var
checkApiUrl
=
AVWEB
.
getCheckApiUrl
(
ClientData
.
userInfo_accountPath
())
AVWEB
.
avwCmsApiWithUrl
(
checkApiUrl
,
ClientData
.
userInfo_accountPath
(),
name
,
method
,
params
,
callback
,
null
);
AVWEB
.
avwCmsApiWithUrl
(
checkApiUrl
,
ClientData
.
userInfo_accountPath
(),
name
,
method
,
params
,
callback
,
errorCallback
);
};
// Call API
...
...
@@ -790,13 +790,13 @@ HOME_CHECK.showPushMessageList = function() {
var
params
=
{
sid
:
ClientData
.
userInfo_sid
()
};
$
(
"#recept_push_message_list"
).
empty
();
HOME_CHECK
.
checkApi
(
'webPushMessageList'
,
params
,
'POST'
,
function
(
data
)
{
$
(
"#recept_push_message_list"
).
empty
();
$
.
each
(
data
.
pushMessageList
,
function
(
i
,
json
)
{
var
li
=
$
(
"<li/>"
,
{
style
:
"height:auto;border-bottom:1px solid black;width:560px;display:inline-block;position:relative;"
});
var
leftDiv
=
$
(
"<div/>"
,
{
style
:
"text-align:left;margin: 20px 5px 20px 20px;width:290px;"
});
leftDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:20px;overflow:hidden;width:100%;margin:10px 0;"
}).
text
(
json
.
pushMessage
));
leftDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:20px;overflow:hidden;width:100%;margin:10px 0;"
}).
html
(
json
.
pushMessage
.
replace
(
/
\n
/ig
,
"<br>"
)
));
leftDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;overflow:hidden;width:100%;"
}).
text
(
json
.
pushSendDate
));
var
rightDiv
=
$
(
"<div/>"
,
{
style
:
"text-align:right;width:200px;position:absolute;bottom:0;right:20px;"
});
if
(
json
.
projectName
)
{
...
...
@@ -925,6 +925,19 @@ HOME_CHECK.sendPushMessage = function() {
setTimeout
(
function
()
{
$
(
'.notification-pushmessage'
).
slideUp
();
},
5000
);
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
/* call custom error process */
if
(
xmlHttpRequest
.
status
==
400
)
{
/* show messages */
$
().
toastmessage
({
position
:
'middle-center'
});
$
().
toastmessage
(
'showToast'
,
{
type
:
'error'
,
sticky
:
true
,
text
:
"プッシュメッセージの送信に失敗しました。"
});
}
else
{
AVWEB
.
showSystemError
();
}
});
}
...
...
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