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
4b5e96e5
Commit
4b5e96e5
authored
Feb 19, 2019
by
Ha Jonguk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ウェブ版課題対応中
parent
7c43a4b8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
11 deletions
+20
-11
abvw/css/layout/list_project.css
+5
-1
abvw/js/home_check.js
+13
-8
abvw/js/settings.js
+2
-2
No files found.
abvw/css/layout/list_project.css
View file @
4b5e96e5
...
...
@@ -21,9 +21,12 @@ div.container ul.addition_list li.check .code {
div
.container
ul
.addition_list
li
.read
.code
{
background-color
:
#FF7700
;
}
div
.container
ul
.addition_list
li
p
.projectName
{
font-weight
:
normal
;
font-size
:
1.5em
;
}
div
.container
ul
.addition_list
li
p
.workContent
{
font-weight
:
normal
;
font-size
:
1.5rem
;
}
/*
.ui-widget {
...
...
@@ -174,6 +177,7 @@ header button.addition {
text-align
:
center
;
color
:
rgb
(
255
,
255
,
255
);
margin
:
auto
;
line-height
:
50px
;
}
.headerBar
.headerBtn
{
...
...
abvw/js/home_check.js
View file @
4b5e96e5
...
...
@@ -28,7 +28,7 @@ $(document).ready(function() {
return
;
}
document
.
title
=
I18N
.
i18nText
(
'dspHome'
)
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
document
.
title
=
"ABookCheck"
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
$
(
'#dspCommunication'
).
click
(
HOME_CHECK
.
showCommunicationDialog
);
$
(
'#dspCommunication'
).
show
();
...
...
@@ -576,8 +576,8 @@ HOME_CHECK.renderAddProject = function(post) {
taskInfo
.
append
(
codeAndExpiration
);
taskInfo
.
append
(
$
(
"<p/>"
).
text
(
post
.
projectName
));
taskInfo
.
append
(
$
(
"<p/>"
,
{
class
:
"workContent"
}).
text
(
post
.
projectDescriptions
));
taskInfo
.
append
(
$
(
"<p/>"
,
{
class
:
"projectName"
}
).
text
(
post
.
projectName
));
taskInfo
.
append
(
$
(
"<p/>"
,
{
class
:
"workContent"
}).
html
(
post
.
projectDescriptions
.
replace
(
/
\n
/ig
,
"<br>"
)
));
listLi
.
append
(
taskInfo
);
...
...
@@ -785,6 +785,7 @@ HOME_CHECK.showPushMessageList = function() {
$
(
"#communication"
).
hide
();
$
(
"#recept_push_message"
).
css
(
"top"
,
(
$
(
window
).
height
()
-
$
(
"#recept_push_message"
).
height
())
/
2
);
$
(
"#recept_push_message"
).
css
(
"left"
,
(
$
(
window
).
width
()
-
$
(
"#recept_push_message"
).
width
())
/
2
);
$
(
".new_message_mark"
).
remove
();
$
(
"#recept_push_message"
).
show
();
var
params
=
{
sid
:
ClientData
.
userInfo_sid
()
...
...
@@ -795,16 +796,20 @@ HOME_CHECK.showPushMessageList = function() {
$
.
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;"
,
title
:
json
.
pushMessage
}).
text
(
json
.
pushMessage
));
leftDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:20px;overflow:hidden;width:100%;margin:10px 0;"
}).
text
(
json
.
pushMessage
));
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;"
});
rightDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;text-overflow:ellipsis;overflow:hidden;width:100%;white-space:nowrap;"
}).
text
(
"プロジェクト名"
));
rightDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;text-overflow:ellipsis;overflow:hidden;width:100%;white-space:nowrap;font-weight:bold;"
,
title
:
json
.
projectName
}).
text
(
json
.
projectName
));
rightDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;text-overflow:ellipsis;overflow:hidden;width:100%;white-space:nowrap;margin:10px 0;"
,
title
:
json
.
pushSendLoginId
}).
text
(
"送信者: "
+
json
.
pushSendLoginId
));
if
(
json
.
projectName
)
{
rightDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;text-overflow:ellipsis;overflow:hidden;width:100%;white-space:nowrap;"
}).
text
(
"プロジェクト名"
));
rightDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;text-overflow:ellipsis;overflow:hidden;width:100%;white-space:nowrap;font-weight:bold;"
}).
text
(
json
.
projectName
));
}
if
(
json
.
pushSendLoginId
)
{
rightDiv
.
append
(
$
(
"<div/>"
,
{
style
:
"font-size:16px;text-overflow:ellipsis;overflow:hidden;width:100%;white-space:nowrap;margin:10px 0;"
}).
text
(
"送信者: "
+
json
.
pushSendLoginId
));
}
li
.
append
(
leftDiv
);
li
.
append
(
rightDiv
);
if
(
i
<
HOME_CHECK
.
newMessageCnt
)
{
li
.
append
(
$
(
"<p/>"
,
{
style
:
"background-color:red;width:10px;height:10px;border-radius:10px;position:absolute;top:0;left:5px;"
}));
li
.
append
(
$
(
"<p/>"
,
{
class
:
"new_message_mark"
,
style
:
"background-color:red;width:10px;height:10px;border-radius:10px;position:absolute;top:0;left:5px;"
}));
}
$
(
"#recept_push_message_list"
).
append
(
li
);
});
...
...
abvw/js/settings.js
View file @
4b5e96e5
...
...
@@ -12,7 +12,7 @@ $(document).ready(function () {
COMMON
.
LockScreen
();
}
document
.
title
=
I18N
.
i18nText
(
'dspSetting'
)
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
//
document.title = I18N.i18nText('dspSetting') + ' | ' + I18N.i18nText('sysAppTitle');
// Set bookmark screen
ClientData
.
BookmarkScreen
(
COMMON
.
ScreenIds
.
Setting
);
...
...
@@ -126,7 +126,7 @@ $(document).ready(function () {
event of changing language
*/
function
changeLanguageCallBackFunction
()
{
document
.
title
=
I18N
.
i18nText
(
'dspSetting'
)
+
' | '
+
I18N
.
i18nText
(
'sysAppTitle'
);
//
document.title = I18N.i18nText('dspSetting') + ' | ' + I18N.i18nText('sysAppTitle');
};
...
...
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