pull/29/head
jmoenig 2016-12-05 08:58:16 +01:00
rodzic 4d2fae6fc8
commit 76069819e2
2 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -3160,3 +3160,7 @@ http://snap.berkeley.edu/run#cloud:Username=jens&ProjectName=rotation
* Morphic, Blocks, GUI: Filter Project Names in the “open” dialog, thanks, Bernat!!
* GUI: update scrollbars of the project dialog as the project list is filtered
* Blocks: fixed #1522
161205
------
* Objects: fixed #1543

Wyświetl plik

@ -82,7 +82,7 @@ SpeechBubbleMorph, RingMorph, isNil, FileReader, TableDialogMorph,
BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, localize,
TableMorph, TableFrameMorph, normalizeCanvas, BooleanSlotMorph*/
modules.objects = '2016-November-28';
modules.objects = '2016-December-05';
var SpriteMorph;
var StageMorph;
@ -7300,7 +7300,7 @@ Note.prototype.setupContext = function () {
window.msAudioContext ||
window.oAudioContext ||
window.webkitAudioContext;
if (!ctx.prototype.hasOwnProperty('createGain')) {
if (!ctx.prototype.createGain) {
ctx.prototype.createGain = ctx.prototype.createGainNode;
}
return ctx;