diff options
| author | jmoenig <jens@moenig.org> | 2013-11-04 13:58:44 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-11-04 13:58:44 +0100 |
| commit | 405c36805b759baa5e20b6fb092e2b54411ed443 (patch) | |
| tree | 6b25c390ad460cfcc133f8f214aa7db86fd848e9 /gui.js | |
| parent | 5b63e7e6fa009fca3cbb8eaf2fc7e629f17d7845 (diff) | |
| download | snap-byow-405c36805b759baa5e20b6fb092e2b54411ed443.tar.gz snap-byow-405c36805b759baa5e20b6fb092e2b54411ed443.zip | |
filter quotation marks from project names
(for backend index)
Diffstat (limited to 'gui.js')
| -rw-r--r-- | gui.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,7 +68,7 @@ sb, CommentMorph, CommandBlockMorph, BlockLabelPlaceHolderMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2013-October-04'; +modules.gui = '2013-November-04'; // Declarations @@ -1439,7 +1439,7 @@ IDE_Morph.prototype.fixLayout = function (situation) { }; IDE_Morph.prototype.setProjectName = function (string) { - this.projectName = string; + this.projectName = string.replace(/['"]/g, ''); // filter quotation marks this.hasChangedMedia = true; this.controlBar.updateLabel(); }; |
