Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Kulya
OpnSense
Commits
09d6aacc
Commit
09d6aacc
authored
Aug 04, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(legacy) backport show all help button behaviour to legacy code
parent
5a893de7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
head.inc
src/www/head.inc
+17
-3
No files found.
src/www/head.inc
View file @
09d6aacc
...
...
@@ -100,9 +100,23 @@ $pagetitle = gentitle( $pgtitle );
// link showhelp class behavior
$
(
"
a[class='showhelp']
"
).
click
(
function
(
event
)
{
$
(
"
*[for='
"
+
$
(
this
).
attr
(
'
id
'
)
+
"
']
"
).
toggleClass
(
"
hidden show
"
);
event
.
preventDefault
();
});
$
(
"
*[for='
"
+
$
(
this
).
attr
(
'
id
'
)
+
"
']
"
).
toggleClass
(
"
hidden show
"
);
event
.
preventDefault
();
});
// handle all help messages show/hide
$
(
'
[id*="show_all_help"]
'
).
click
(
function
(
event
)
{
$
(
'
[id*="show_all_help"]
'
).
toggleClass
(
"
fa-toggle-on fa-toggle-off
"
);
$
(
'
[id*="show_all_help"]
'
).
toggleClass
(
"
text-success text-danger
"
);
if
(
$
(
'
[id*="show_all_help"]
'
).
hasClass
(
"
fa-toggle-on
"
))
{
$
(
'
[for*="help_for"]
'
).
addClass
(
"
show
"
);
$
(
'
[for*="help_for"]
'
).
removeClass
(
"
hidden
"
);
}
else
{
$
(
'
[for*="help_for"]
'
).
addClass
(
"
hidden
"
);
$
(
'
[for*="help_for"]
'
).
removeClass
(
"
show
"
);
}
event
.
preventDefault
();
});
});
//]]>
...
...
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