Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
third-party
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
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cooperatic-foodcoops
third-party
Commits
b479fafd
Commit
b479fafd
authored
Dec 18, 2021
by
François C.
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix_faq_accordion_bug' into dev_cooperatic
parents
773d5ea8
b6ec85ac
Pipeline
#1677
passed with stage
in 1 minute 32 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
17 deletions
+4
-17
members-space-faq.js
members_space/static/js/members-space-faq.js
+1
-17
all_common.js
outils/static/js/all_common.js
+3
-0
No files found.
members_space/static/js/members-space-faq.js
View file @
b479fafd
...
...
@@ -20,21 +20,6 @@ function init_faq() {
$
(
"#request_form_link_btn"
).
prop
(
"href"
,
request_form_link
);
}
$
(
document
).
on
(
'click'
,
'.accordion'
,
function
()
{
/* Toggle between adding and removing the "active" class,
to highlight the button that controls the panel */
this
.
classList
.
toggle
(
"active"
);
/* Toggle between hiding and showing the active panel */
var
panel
=
this
.
nextElementSibling
;
if
(
panel
.
style
.
display
===
"block"
)
{
panel
.
style
.
display
=
"none"
;
}
else
{
panel
.
style
.
display
=
"block"
;
}
$
(
"#shift_exchange_btn"
).
on
(
"click"
,
()
=>
{
$
(
document
).
on
(
'click'
,
"#shift_exchange_btn"
,
()
=>
{
goto
(
'echange-de-services'
);
});
});
\ No newline at end of file
outils/static/js/all_common.js
View file @
b479fafd
...
...
@@ -467,12 +467,15 @@ $(document).on('click', '.accordion', function(){
/* Toggle between hiding and showing the active panel */
var
panel
=
this
.
nextElementSibling
;
if
(
panel
.
style
.
display
===
"block"
)
{
panel
.
style
.
display
=
"none"
;
}
else
{
panel
.
style
.
display
=
"block"
;
}
console
.
log
(
panel
)
});
function
report_JS_error
(
e
,
m
)
{
try
{
$
.
post
(
'/log_js_error'
,
{
module
:
m
,
error
:
JSON
.
stringify
(
e
)});
...
...
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