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
b96b708b
Commit
b96b708b
authored
Dec 18, 2015
by
vietdo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#18995【Web 1.6.5】前回入力値がそのまま残っている
parent
0de812be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
5 deletions
+20
-5
abvw/js/history.js
+1
-1
abvw/js/share.js
+19
-4
No files found.
abvw/js/history.js
View file @
b96b708b
...
...
@@ -1304,7 +1304,7 @@ HISTORY.renderContentAfterSort = function(contentSortArr) {
+
' </a>'
+
' <div class="info">'
+
' <ul class="date">'
+
' <li><span class="lang" lang="txtPubDt">'
+
I18N
.
i18nText
(
"txtPubDt"
)
+
'</span>
:
'
+
outputDeliveryDate
+
'</li>'
+
' <li><span class="lang" lang="txtPubDt">'
+
I18N
.
i18nText
(
"txtPubDt"
)
+
'</span>
:
'
+
outputDeliveryDate
+
'</li>'
+
' <li><span class="lang" lang="txtViewDt">'
+
I18N
.
i18nText
(
"txtViewDt"
)
+
'</span>:<span id="lblVdate'
+
post
.
contentid
+
'"> </span></li>'
+
' </ul>'
+
' <ul class="pic">'
...
...
abvw/js/share.js
View file @
b96b708b
...
...
@@ -51,11 +51,26 @@ SHARE.openContentShare = function() {
//alert("SHARE.contentId:" + SHARE.contentId);
//$('#dlgContentShare').dialog( 'open' );
if
(
$
(
'#dlgContentShare_password'
).
val
()
!=
""
){
$
(
'#dlgContentShare_password'
).
val
(
""
);
}
if
(
$
(
'#dlgContentShare_validStartDate'
).
val
()
!=
""
){
$
(
'#dlgContentShare_validStartDate'
).
val
(
""
);
}
if
(
$
(
'#dlgContentShare_validEndDate'
).
val
()
!=
""
){
$
(
'#dlgContentShare_validEndDate'
).
val
(
""
);
}
if
(
$
(
'#dlgContentShare_maxDlCount'
).
val
()
!=
""
){
$
(
'#dlgContentShare_maxDlCount'
).
val
(
""
);
}
$
(
"#dlgContentShare_close"
).
click
(
SHARE
.
dlgContentShare_close_Click
);
$
(
"#dlgContentShare_ok"
).
click
(
SHARE
.
dlgContentShare_ok_Click
);
COMMON
.
lockLayout
();
//
COMMON.lockLayout();
$
(
"#dlgContentShare"
).
css
(
'z-index'
,
102
);
$
(
"#dlgContentShare"
).
show
();
...
...
@@ -182,7 +197,7 @@ SHARE.sendContentShare = function() {
//$(":button:contains('Ok')").prop("disabled", true).addClass("ui-state-disabled");
}
else
{
$
(
'#dlgContentShare_error'
).
show
();
$
(
'#dlgContentShare_error'
).
show
();
console
.
log
(
data
.
errorMessage
);
$
(
'#dlgContentShare_error'
).
html
(
data
.
errorMessage
);
}
},
...
...
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