diff --git a/examples/Widgets.js b/examples/Widgets.js index 7d95930b..9477cfaa 100644 --- a/examples/Widgets.js +++ b/examples/Widgets.js @@ -246,6 +246,8 @@ GUI.TopBar = function(Tone){ Tone.Master.connect(this.meter); this.meterGUI = new GUI.LevelMeter(this.element, this.meter); this.makeDropDown(); + //and the mobile start button + new GUI.MobileStart(Tone.startMobile); }; GUI.TopBar.prototype.makeDropDown = function(){ diff --git a/examples/autoPanner.html b/examples/autoPanner.html index 996edeb0..72adc1c0 100644 --- a/examples/autoPanner.html +++ b/examples/autoPanner.html @@ -48,7 +48,6 @@ // GUI // new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); var container = $("#Content"); diff --git a/examples/buses.html b/examples/buses.html index 7e4899e5..074b523c 100644 --- a/examples/buses.html +++ b/examples/buses.html @@ -64,7 +64,6 @@ // GUI // - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); var content = $("#Content"); diff --git a/examples/duoSynth.html b/examples/duoSynth.html index 8aed0a24..b3a4acbe 100644 --- a/examples/duoSynth.html +++ b/examples/duoSynth.html @@ -61,7 +61,6 @@ // GUI // new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); $("#tabs").tabs(); diff --git a/examples/envelope.html b/examples/envelope.html index f62132af..d34d07e4 100644 --- a/examples/envelope.html +++ b/examples/envelope.html @@ -45,7 +45,6 @@ $(function(){ var container = $("#Content"); - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); //sliders for the envelope controls diff --git a/examples/fmSynth.html b/examples/fmSynth.html index 5befd63f..bcfd7aa2 100644 --- a/examples/fmSynth.html +++ b/examples/fmSynth.html @@ -62,7 +62,6 @@ // GUI // new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); $("#tabs").tabs(); diff --git a/examples/json.html b/examples/json.html index f888efd0..6e521110 100644 --- a/examples/json.html +++ b/examples/json.html @@ -58,6 +58,7 @@ }; var synth = new Tone.MonoSynth(synthOptions); + synth.setVolume(-10); synth.toMaster(); var synthPart = [["0", "C2"], ["1*8n", "C4"], ["2*8n", "E4"], ["3*8n", "B3"], @@ -78,7 +79,6 @@ // GUI // new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); var content = $("#Content"); diff --git a/examples/lfo.html b/examples/lfo.html index 7465ee17..595009f2 100644 --- a/examples/lfo.html +++ b/examples/lfo.html @@ -50,7 +50,6 @@ var content = $("#Content"); new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); new GUI.Checkbox(content, function(on){ if (on){ diff --git a/examples/monoSynth.html b/examples/monoSynth.html index ee01ba29..0b40ea88 100644 --- a/examples/monoSynth.html +++ b/examples/monoSynth.html @@ -59,7 +59,6 @@ // GUI // new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); $("#tabs").tabs(); diff --git a/examples/noises.html b/examples/noises.html index b65c99d4..ffb2b0f7 100644 --- a/examples/noises.html +++ b/examples/noises.html @@ -57,7 +57,6 @@ // GUI // - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); new GUI.Momentary($("#Button"), function(){ diff --git a/examples/oscillator.html b/examples/oscillator.html index 27f7d886..a8dca851 100644 --- a/examples/oscillator.html +++ b/examples/oscillator.html @@ -43,7 +43,6 @@ $(function(){ var content = $("#Content"); - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); new GUI.Checkbox(content, function(on){ if (on){ diff --git a/examples/pingPongDelay.html b/examples/pingPongDelay.html index 87af613a..464c7e42 100644 --- a/examples/pingPongDelay.html +++ b/examples/pingPongDelay.html @@ -44,7 +44,6 @@ // GUI // - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); new GUI.Momentary($("#Content"), function(on){ diff --git a/examples/player.html b/examples/player.html index 4ecf70ca..2e8793f8 100644 --- a/examples/player.html +++ b/examples/player.html @@ -43,7 +43,6 @@ // GUI // - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); new GUI.Momentary($("#Content"), function(on){ diff --git a/examples/score.html b/examples/score.html index aa908769..802a5e8c 100644 --- a/examples/score.html +++ b/examples/score.html @@ -98,7 +98,6 @@ // GUI // var content = $("#Content"); - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); //the transport controls diff --git a/examples/signalMath.html b/examples/signalMath.html index cababa05..f68f3e65 100644 --- a/examples/signalMath.html +++ b/examples/signalMath.html @@ -76,7 +76,6 @@ // GUI // new GUI.TopBar(Tone); - new GUI.MobileStart(Tone.startMobile); var container = $("#Content"); diff --git a/examples/stepSequencer.html b/examples/stepSequencer.html index 844800ef..7722d446 100644 --- a/examples/stepSequencer.html +++ b/examples/stepSequencer.html @@ -98,7 +98,6 @@ } } - new GUI.MobileStart(Tone.startMobile); new GUI.TopBar(Tone); var startButton = $("#StartButton"); diff --git a/examples/style/widgets.css b/examples/style/widgets.css index 75a5888e..d6e5ee08 100644 --- a/examples/style/widgets.css +++ b/examples/style/widgets.css @@ -4,6 +4,12 @@ user-select: none; } +textarea { + -webkit-user-select: text!important; + -moz-user-select: text!important + user-select: text!important +} + #Container { text-size-adjust: none; -webkit-text-size-adjust: none; @@ -34,7 +40,7 @@ position: relative; margin: auto; margin-top: 60px; - margin-bottom: 80px; + margin-bottom: 120px; width: 200px; height: auto; z-index: 0;