Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
purr-data
Commits
addfe23d
Commit
addfe23d
authored
Apr 04, 2021
by
Prakhar Agarwal
🎯
Browse files
show sidebar on help browser click
parent
ae8d1ef0
Changes
2
Hide whitespace changes
Inline
Side-by-side
emscripten/project/purr-data/index.html
View file @
addfe23d
...
...
@@ -79,7 +79,7 @@
</div>
<a
id=
"sidebar-collapse"
class=
"m-2"
data-toggle=
"collapse"
data-target=
"#sidebar"
>
<i
class=
"fa fa-angle-double-left rotate-transition"
onclick=
"rotate(this)"
></i>
<i
class=
"fa fa-angle-double-left rotate-transition"
id=
"sidebar-col-icon"
onclick=
"rotate(this)"
></i>
</a>
<!-- Canvas/Pd Windows -->
...
...
emscripten/project/purr-data/utils/actions.js
View file @
addfe23d
...
...
@@ -97,6 +97,14 @@ function load_menu_actions(){
}
});
minit
(
"
help-browser
"
,
{
onclick
:
function
(){
// show sidebar
$
(
"
#sidebar
"
).
collapse
(
"
show
"
);
$
(
"
#sidebar-col-icon
"
).
removeClass
(
"
rotate
"
);
}
});
minit
(
"
help-intro
"
,
{
onclick
:
function
(){
pdbundle
.
pdgui
.
web_external_doc_open
(
"
http://puredata.info/docs/manuals/pdrefcards/pd-refcard-en.pdf/view
"
)
...
...
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