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
f282c786
Commit
f282c786
authored
Apr 11, 2021
by
Prakhar Agarwal
🎯
Browse files
Merge branch 'emscripten' into rem_mark_high
parents
b3f24c33
f736712d
Changes
4
Hide whitespace changes
Inline
Side-by-side
emscripten/project/purr-data/.gitignore
View file @
f282c786
...
...
@@ -11,7 +11,7 @@ main.js
main.wasm
# ignore copied files
components/dialogs/dialog
s
_*.html
components/dialogs/dialog_*.html
css/*.css
# ignore build files
...
...
emscripten/project/purr-data/utils/actions.js
View file @
f282c786
...
...
@@ -72,6 +72,9 @@ function load_menu_actions(){
text_container
.
style
.
setProperty
(
"
bottom
"
,
"
0px
"
);
find_bar
.
style
.
setProperty
(
"
display
"
,
"
none
"
);
}
// show sidebar
$
(
"
#console_bottom
"
).
collapse
(
"
show
"
);
$
(
"
#open-icon
"
).
removeClass
(
"
rotate
"
);
}
});
...
...
pd/nw/pd_canvas.js
View file @
f282c786
...
...
@@ -1452,6 +1452,10 @@ function create_popup_menu(name) {
label
:
l
(
"
canvas.menu.props
"
),
click
:
function
()
{
pdgui
.
popup_action
(
name
,
0
);
// show sidebar
$
(
"
#sidebar
"
).
collapse
(
"
show
"
);
$
(
"
#sidebar-col-icon
"
).
removeClass
(
"
rotate
"
);
}
},
open
:
{
...
...
@@ -2374,6 +2378,9 @@ function load_canvas_menu_actions(name, filename){
update_live_box
();
pdgui
.
pdsend
(
name
,
"
dirty 1
"
);
pdgui
.
pdsend
(
name
,
"
menuarray
"
);
// show sidebar
$
(
"
#sidebar
"
).
collapse
(
"
show
"
);
$
(
"
#sidebar-col-icon
"
).
removeClass
(
"
rotate
"
);
}
});
...
...
pd/nw/pdgui.js
View file @
f282c786
...
...
@@ -5741,6 +5741,9 @@ function open_search() {
}
else
{
dialog_raise
(
"
search
"
);
}
// show sidebar
$
(
"
#sidebar
"
).
collapse
(
"
show
"
);
$
(
"
#sidebar-col-icon
"
).
removeClass
(
"
rotate
"
);
}
exports
.
open_search
=
open_search
;
...
...
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