From 1a416e5b1a789de3dd4bfa25c389228e82da1a42 Mon Sep 17 00:00:00 2001 From: "adrienjacquet98@gmail.com" Date: Tue, 8 Oct 2013 16:20:43 +0200 Subject: [PATCH] audio stable format .wav --- scripts/libs/separation_toolkit/intro.js | 2 +- scripts/recit/recit.js | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/libs/separation_toolkit/intro.js b/scripts/libs/separation_toolkit/intro.js index 791cab6..4d1f937 100644 --- a/scripts/libs/separation_toolkit/intro.js +++ b/scripts/libs/separation_toolkit/intro.js @@ -5,7 +5,7 @@ */ function appOnDevice() { - return true; + return false; } var events = { diff --git a/scripts/recit/recit.js b/scripts/recit/recit.js index ac4ab24..76a60c1 100644 --- a/scripts/recit/recit.js +++ b/scripts/recit/recit.js @@ -3,19 +3,19 @@ */ var Recit = {}; var rct; // RecitConsTantes (RCT) : Constantes (taille de la police, etc.) utilisées pour le récit -var DEBUG = false; +var DEBUG = true; /* Point d'entrée du récit */ Recit.start = function() { clearStage(); - + this.computeSizes(); if(DEBUG) this.addLines(); - + var sentence = new Sentence(); - + sentence.add(new Word('LA')); sentence.addSpace(); sentence.add(new Word('SEPARATION')); @@ -24,7 +24,7 @@ Recit.start = function() { sentence.add(new Word('CLEF')); sentence.addTab(); sentence.add(new Word('CIEL')); - + sentence.generate(12); sentence.display(mainLayer); @@ -57,4 +57,4 @@ Recit.addLines = function() { }); mainLayer.add(rect); } -} +} \ No newline at end of file