Fix encoding for exported libraries of global blocks

pull/3/merge
Jens Mönig 2015-05-21 20:09:21 +02:00
rodzic be938b5da7
commit e005d71601
2 zmienionych plików z 8 dodań i 2 usunięć

Wyświetl plik

@ -106,7 +106,7 @@ SymbolMorph, isNil*/
// Global stuff ////////////////////////////////////////////////////////
modules.byob = '2015-May-01';
modules.byob = '2015-May-21';
// Declarations
@ -3297,7 +3297,9 @@ BlockExportDialogMorph.prototype.selectNone = function () {
// BlockExportDialogMorph ops
BlockExportDialogMorph.prototype.exportBlocks = function () {
var str = this.serializer.serialize(this.blocks);
var str = encodeURIComponent(
this.serializer.serialize(this.blocks)
);
if (this.blocks.length > 0) {
window.open(encodeURI('data:text/xml,<blocks app="'
+ this.serializer.app

Wyświetl plik

@ -2504,3 +2504,7 @@ ______
------
* Objects, GUI: Fix encoding for exported sprites (esp. comments)
* Portuguese translation update, thanks, Manuel!!
150521
------
* BYOB: Fix encoding for exported libraries of global blocks