Skip to content

Commit 9d64323

Browse files
committed
fix some inconsistencies with TB
1 parent a2fd4e0 commit 9d64323

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

js/activity.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ var MYDEFINES = [
7878
'easeljs.min',
7979
'tweenjs.min',
8080
'preloadjs.min',
81-
'Tone.min',
8281
'howler',
8382
'p5.min',
8483
'p5.sound.min',
@@ -110,11 +109,13 @@ var MYDEFINES = [
110109
'utils/synthutils',
111110
'activity/playbackbox',
112111
'activity/pastebox',
112+
'activity/languagebox',
113113
'prefixfree.min'
114114
];
115115

116116
if (_THIS_IS_MUSIC_BLOCKS_) {
117117
var MUSICBLOCKS_EXTRAS = [
118+
'Tone.min',
118119
'widgets/modewidget',
119120
'widgets/pitchtimematrix',
120121
'widgets/pitchdrummatrix',
@@ -123,7 +124,6 @@ if (_THIS_IS_MUSIC_BLOCKS_) {
123124
'widgets/tempo',
124125
'widgets/pitchslider',
125126
'widgets/timbre',
126-
'activity/languagebox',
127127
'activity/lilypond',
128128
'activity/abc'
129129
];
@@ -1321,7 +1321,7 @@ define(MYDEFINES, function (compatibility) {
13211321

13221322
this.init = function(){
13231323
this.iframe = document.getElementById('planet-iframe');
1324-
this.iframe.contentWindow.makePlanet(_THIS_IS_MUSIC_BLOCKS_,storage);
1324+
this.iframe.contentWindow.makePlanet(_THIS_IS_MUSIC_BLOCKS_, storage);
13251325
this.planet = this.iframe.contentWindow.p;
13261326
this.planet.setLoadProjectFromData(this.loadProjectFromData.bind(this));
13271327
this.planet.setPlanetClose(this.closePlanet.bind(this));

0 commit comments

Comments
 (0)