Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions js/turtledefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,14 @@ const createHelpContent = (activity) => {
_("Let us start our tour!"),
"data:image/svg+xml;base64," +
window.btoa(base64Encode(MOUSEPALETTEICON))
],
[
_("Guide"),
_("A detailed guide to Music Blocks is available."),
"data:image/svg+xml;base64," +
window.btoa(base64Encode(LOGO)),
GUIDEURL,
_("Music Blocks Guide")
],
[
_("Play"),
Expand Down Expand Up @@ -697,16 +705,16 @@ const createHelpContent = (activity) => {
"data:image/svg+xml;base64," +
window.btoa(
base64Encode(PLUGINSDELETEBUTTON))

]);
HELPCONTENT.push([
_("Enable scrolling"),
_("You can scroll the blocks on the canvas."),
"data:image/svg+xml;base64," +
window.btoa(
base64Encode(SCROLLUNLOCKBUTTON))
]);

]);
}
// TODO: Add merge
HELPCONTENT.push([
Expand All @@ -715,7 +723,7 @@ const createHelpContent = (activity) => {
"data:image/svg+xml;base64," +
window.btoa(
base64Encode(WRAPTURTLEBUTTON))

]);
// TODO: Music Blocks: set pitch preview
// TODO: toggle JS editor
Expand All @@ -725,7 +733,7 @@ const createHelpContent = (activity) => {
"data:image/svg+xml;base64," +
window.btoa(
base64Encode(RESTORETRASHBUTTON))

]);
HELPCONTENT.push([
_("Switch mode"),
Expand Down Expand Up @@ -785,14 +793,6 @@ const createHelpContent = (activity) => {
window.btoa(base64Encode(LOGO))
]);
} else {
HELPCONTENT.push([
_("Guide"),
_("A detailed guide to Music Blocks is available."),
"data:image/svg+xml;base64," +
window.btoa(base64Encode(LOGO)),
GUIDEURL,
_("Music Blocks Guide")
]);
HELPCONTENT.push([
_("About"),
_("Music Blocks is an open source collection of tools for exploring musical concepts.") +
Expand Down
Loading