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
c58e05a5
Commit
c58e05a5
authored
Oct 19, 2020
by
Kim Eunchul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#39714 andやor検索(ウェブ版error処理)
parent
3557e19b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
abvw/js/contentview.js
+6
-1
abvw/js/contentview_Events.js
+16
-1
No files found.
abvw/js/contentview.js
View file @
c58e05a5
...
@@ -736,6 +736,7 @@ CONTENTVIEW.searchHandle = function() {
...
@@ -736,6 +736,7 @@ CONTENTVIEW.searchHandle = function() {
}
}
if
(
$
(
'#txtSearch'
).
val
()
!=
''
)
{
if
(
$
(
'#txtSearch'
).
val
()
!=
''
)
{
try
{
var
dataStored
=
CONTENTVIEW_GENERAL
.
arrThumbnailsLoaded
;
var
dataStored
=
CONTENTVIEW_GENERAL
.
arrThumbnailsLoaded
;
var
contentPage
=
CONTENTVIEW_GENERAL
.
dataWebContentPage
.
pages
;
var
contentPage
=
CONTENTVIEW_GENERAL
.
dataWebContentPage
.
pages
;
var
myRegExp
=
new
RegExp
(
$
(
'#txtSearch'
).
val
());
var
myRegExp
=
new
RegExp
(
$
(
'#txtSearch'
).
val
());
...
@@ -754,7 +755,6 @@ CONTENTVIEW.searchHandle = function() {
...
@@ -754,7 +755,6 @@ CONTENTVIEW.searchHandle = function() {
if
(
match
!=
null
)
if
(
match
!=
null
)
{
{
myArray
.
push
(
match
[
1
]
?
match
[
1
]
:
match
[
0
]);
myArray
.
push
(
match
[
1
]
?
match
[
1
]
:
match
[
0
]);
console
.
log
(
myArray
);
}
}
}
while
(
match
!=
null
);
}
while
(
match
!=
null
);
...
@@ -808,6 +808,11 @@ CONTENTVIEW.searchHandle = function() {
...
@@ -808,6 +808,11 @@ CONTENTVIEW.searchHandle = function() {
}
}
}
}
}
catch
(
error
){
alert
(
'正しくない検索です'
);
return
;
}
if
(
sPageNo
.
length
>
0
)
{
if
(
sPageNo
.
length
>
0
)
{
//title start
//title start
$
(
'#bookmarkBoxHdSearching'
).
children
().
remove
();
$
(
'#bookmarkBoxHdSearching'
).
children
().
remove
();
...
...
abvw/js/contentview_Events.js
View file @
c58e05a5
//名前空間用のオブジェクトを用意する
//名前空間用のオブジェクトを用意する
var
CONTENTVIEW_EVENTS
=
{};
var
CONTENTVIEW_EVENTS
=
{};
CONTENTVIEW_EVENTS
.
click
=
true
;
/* add memo click */
/* add memo click */
CONTENTVIEW_EVENTS
.
handleAddMemo
=
function
(
event
)
{
CONTENTVIEW_EVENTS
.
handleAddMemo
=
function
(
event
)
{
...
@@ -255,12 +256,26 @@ CONTENTVIEW_EVENTS.closeCopyTextBox = function() {
...
@@ -255,12 +256,26 @@ CONTENTVIEW_EVENTS.closeCopyTextBox = function() {
$
(
"#overlay"
).
hide
();
$
(
"#overlay"
).
hide
();
};
};
CONTENTVIEW_EVENTS
.
overClick
=
function
()
{
if
(
CONTENTVIEW_EVENTS
.
click
)
{
CONTENTVIEW_EVENTS
.
click
=
!
CONTENTVIEW_EVENTS
.
click
;
// prevent clicking for 2 sec
setTimeout
(
function
()
{
CONTENTVIEW_EVENTS
.
click
=
true
;
},
1000
)
return
false
;
}
else
{
return
true
;
}
}
/*event click show dialog search*/
/*event click show dialog search*/
CONTENTVIEW_EVENTS
.
showListSearchResult
=
function
()
{
CONTENTVIEW_EVENTS
.
showListSearchResult
=
function
()
{
$
(
'#txtSearch'
).
keydown
(
function
(
e
)
{
$
(
'#txtSearch'
).
keydown
(
function
(
e
)
{
if
(
e
.
keyCode
==
13
)
{
if
(
e
.
keyCode
==
13
)
{
if
(
CONTENT
SEARCH
.
overClick
()){
if
(
CONTENT
VIEW_EVENTS
.
overClick
()){
return
;
return
;
}
}
...
...
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