Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
f34ae161
Commit
f34ae161
authored
Nov 07, 2024
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_web_renderjs_ui: jslint
parent
e84973af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_relation_input_js.js
...Item/web_page_module/rjs_gadget_erp5_relation_input_js.js
+8
-9
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_relation_input_js.js
View file @
f34ae161
/*jslint indent: 2, maxerr: 3, nomen: true, maxlen: 80 */
/*jslint indent: 2, maxerr: 3, nomen: true, maxlen: 80 */
/*global window, rJS, RSVP, URI,
/*global window, rJS, RSVP, URI,
SimpleQuery, ComplexQuery, Query, QueryFactory, document, XMLHttpRequest,
SimpleQuery, ComplexQuery, Query, QueryFactory, document, XMLHttpRequest,
console*/
console
, MouseEvent
*/
(
function
(
window
,
rJS
,
RSVP
,
URI
,
document
,
(
function
(
window
,
rJS
,
RSVP
,
URI
,
document
,
SimpleQuery
,
ComplexQuery
,
Query
,
QueryFactory
,
XMLHttpRequest
,
console
,
SimpleQuery
,
ComplexQuery
,
Query
,
QueryFactory
,
XMLHttpRequest
,
console
,
MouseEvent
)
{
MouseEvent
)
{
...
@@ -551,10 +551,10 @@
...
@@ -551,10 +551,10 @@
},
false
,
false
)
},
false
,
false
)
.
onEvent
(
'
keydown
'
,
function
(
evt
)
{
.
onEvent
(
'
keydown
'
,
function
(
evt
)
{
var
gadget
=
this
,
var
gadget
=
this
,
i
,
i
,
next_event
,
next_event
,
active_index
,
active_index
,
ul
=
gadget
.
element
.
querySelector
(
"
.search_ul
"
);
ul
=
gadget
.
element
.
querySelector
(
"
.search_ul
"
);
if
(
evt
.
key
===
"
ArrowDown
"
||
evt
.
key
===
"
ArrowUp
"
)
{
if
(
evt
.
key
===
"
ArrowDown
"
||
evt
.
key
===
"
ArrowUp
"
)
{
if
(
ul
.
childNodes
.
length
>
0
)
{
if
(
ul
.
childNodes
.
length
>
0
)
{
for
(
i
=
0
;
i
<
ul
.
childNodes
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
ul
.
childNodes
.
length
;
i
+=
1
)
{
...
@@ -576,8 +576,7 @@
...
@@ -576,8 +576,7 @@
}
}
if
(
active_index
>=
ul
.
childNodes
.
length
)
{
if
(
active_index
>=
ul
.
childNodes
.
length
)
{
active_index
=
0
;
active_index
=
0
;
}
}
else
if
(
active_index
===
-
1
)
{
else
if
(
active_index
===
-
1
)
{
active_index
=
ul
.
childNodes
.
length
-
1
;
active_index
=
ul
.
childNodes
.
length
-
1
;
}
}
}
}
...
@@ -613,8 +612,8 @@
...
@@ -613,8 +612,8 @@
// Do not use li:hover css syntax, since we have to disable manually
// Do not use li:hover css syntax, since we have to disable manually
// the highlightnment when keyboard is used
// the highlightnment when keyboard is used
var
gadget
=
this
,
var
gadget
=
this
,
i
,
i
,
ul
=
gadget
.
element
.
querySelector
(
"
.search_ul
"
);
ul
=
gadget
.
element
.
querySelector
(
"
.search_ul
"
);
if
(
evt
.
target
.
tagName
.
toLowerCase
()
===
'
li
'
)
{
if
(
evt
.
target
.
tagName
.
toLowerCase
()
===
'
li
'
)
{
for
(
i
=
0
;
i
<
ul
.
childNodes
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
ul
.
childNodes
.
length
;
i
+=
1
)
{
ul
.
childNodes
[
i
].
classList
.
remove
(
'
active
'
);
ul
.
childNodes
[
i
].
classList
.
remove
(
'
active
'
);
...
...
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