From 4c9fee58ee2da2191c589a3b4fd5c601d281eea0 Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Mon, 8 Apr 2013 21:49:31 -0400 Subject: Fixed a number of whitespace inconsistencies --- morphic.js | 68 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'morphic.js') diff --git a/morphic.js b/morphic.js index 9bbeaa0..af98706 100644 --- a/morphic.js +++ b/morphic.js @@ -10,7 +10,7 @@ Copyright (C) 2013 by Jens Mšnig - This file is part of Snap!. + This file is part of Snap!. Snap! is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as @@ -591,9 +591,9 @@ rasterization can be deferred until the destination scale is known, taking advantage of SVG's ability for smooth scaling. If instead SVGs are to be rasterized right away, you can set the - + MorphicPreferences.rasterizeSVGs - + preference to . In this case dropped SVGs also trigger the droppedImage() event with a canvas containing a rasterized version of the SVG. @@ -602,12 +602,12 @@ canvas. Those are dispatched as - + droppedAudio(anAudio, name) droppedText(aString, name) events to interested Morphs at the mouse pointer. - + if none of the above content types can be determined, the file contents is dispatched as an ArrayBuffer to interested Morphs: @@ -637,7 +637,7 @@ keyboardReceiver property. - + Note that processKeyUp() is optional and doesn't have to be present if your morph doesn't require it. @@ -708,34 +708,34 @@ a stream of events, mostly by "bubbling" them up the text element's owner chain. Text elements' parents are notified about the following events: - + Whenever the user presses a key on the keyboard while a text element is being edited, a - + reactToKeystroke(event) is escalated up its parent chain, the "event" parameter being the original one received by the World. - + Once the user has completed the edit, the following events are dispatched: - + accept() - was pressed on a single line of text cancel() - was pressed on any text element Note that "accept" only gets triggered by single-line texte elements, as the key is used to insert line breaks in multi-line elements. Therefore, whenever a text edit is terminated by the user - (accepted, cancelled or otherwise), + (accepted, cancelled or otherwise), reactToEdit(StringOrTextMorph) is triggered. If the MorphicPreference's - + useSliderForInput - + setting is turned on, a slider is popped up underneath the currently edited text element letting the user insert numbers out of the given slider range. Whenever this happens, i.e. whenever the slider is moved @@ -751,7 +751,7 @@ method is invoked. That way complex Morphs containing text elements get a chance to react if something about the embedded text has been modified programmatically. These events are: - + layoutChanged() - sent from instances of TextMorph fixLayout() - sent from instances of StringMorph @@ -842,12 +842,12 @@ menu features Gui-Builder-wise functionality to directly inspect, take apart, reassamble and otherwise manipulate morphs and their contents. - + Instead of using the "customContextMenu" property you can also assign a more dynamic contextMenu by overriding the general - + userMenu() - + method with a customized menu constructor. The difference between the customContextMenu property and the userMenu() method is that the former is also present in development mode and overrides the @@ -936,11 +936,11 @@ seemingly dramatic slow-down of the Morphic system. Typically this occurs when updating the layout of complex Morphs with very many submorphs, e.g. when resizing an inspector window. - + An effective strategy to cope with this is to use the inherited - + trackChanges - + property of the Morph prototype for damage list housekeeping. The trackChanges property of the Morph prototype is a Boolean switch @@ -953,20 +953,20 @@ achieved by setting the trackChanges flag to false before propagating the layout changes, setting it to true again and then storing the full bounds of the surrounding morph. An an example refer to the - + moveBy() - + method of HandMorph, and to the fixLayout() - + method of InspectorMorph, or the - + startLayout() endLayout() - methods of SyntaxElementMorph in the Snap application. - + methods of SyntaxElementMorph in the Snap application. + (9) minifying morphic.js ------------------------ @@ -2157,9 +2157,9 @@ Morph.uber = Node.prototype; bounds of the surrounding morph. An an example refer to the fixLayout() - + method of InspectorMorph, or the - + startLayout() endLayout() @@ -3975,7 +3975,7 @@ PenMorph.prototype.drawNew = function (facing) { /* my orientation can be overridden with the "facing" parameter to implement Scratch-style rotation styles - + */ var context, start, dest, left, right, len, direction = facing || this.heading; @@ -6602,7 +6602,7 @@ MenuMorph.prototype.addItem = function (labelString, action, hint, color) { /* labelString is normally a single-line string. But it can also be one of the following: - + * a multi-line string (containing line breaks) * an icon (either a Morph or a Canvas) * a tuple of format: [icon, string] @@ -8137,7 +8137,7 @@ MenuItemMorph.prototype.createLabel = function () { if (isString(this.labelString)) { this.label = this.createLabelString(this.labelString); } else if (this.labelString instanceof Array) { - // assume its pattern is: [icon, string] + // assume its pattern is: [icon, string] this.label = new Morph(); this.label.alpha = 0; // transparent this.label.add(icon = this.createIcon(this.labelString[0])); @@ -8837,7 +8837,7 @@ function ListMorph(elements, labelGetter, format) { last predicate to evaluate true when given the list element sets the given color. If no condition is met, the default color (black) will be assigned. - + An example of how to use fomats can be found in the InspectorMorph's "markOwnProperties" mechanism. */ @@ -9551,11 +9551,11 @@ HandMorph.prototype.processDrop = function (event) { find out whether an external image or audio file was dropped onto the world canvas, turn it into an offscreen canvas or audio element and dispatch the - + droppedImage(canvas, name) droppedSVG(image, name) droppedAudio(audio, name) - + events to interested Morphs at the mouse pointer */ var files = event instanceof FileList ? event -- cgit v1.3.1 From 4d37845b2e4de02ffa5a2e8a37812cca98e206d8 Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Mon, 8 Apr 2013 22:10:18 -0400 Subject: Fixed an encoding issue --- blocks.js | 4 ++-- byob.js | 4 ++-- cloud.js | 4 ++-- gui.js | 4 ++-- lang-de.js | 12 ++++++------ lang-es.js | 12 ++++++------ lists.js | 4 ++-- morphic.js | 6 +++--- objects.js | 4 ++-- store.js | 4 ++-- threads.js | 4 ++-- widgets.js | 4 ++-- xml.js | 4 ++-- 13 files changed, 35 insertions(+), 35 deletions(-) (limited to 'morphic.js') diff --git a/blocks.js b/blocks.js index e756521..219446e 100644 --- a/blocks.js +++ b/blocks.js @@ -6,10 +6,10 @@ based on morphic.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/byob.js b/byob.js index d147ced..9912c4b 100644 --- a/byob.js +++ b/byob.js @@ -6,10 +6,10 @@ based on morphic.js, widgets.js blocks.js, threads.js and objects.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/cloud.js b/cloud.js index 8ef6344..eb8f3c7 100644 --- a/cloud.js +++ b/cloud.js @@ -4,9 +4,9 @@ a backend API for SNAP! - written by Jens Mšnig + written by Jens Mönig - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/gui.js b/gui.js index 4faa1a1..7d5c0e1 100644 --- a/gui.js +++ b/gui.js @@ -6,10 +6,10 @@ based on morphic.js, blocks.js, threads.js and objects.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/lang-de.js b/lang-de.js index cd3d863..ca63859 100644 --- a/lang-de.js +++ b/lang-de.js @@ -4,9 +4,9 @@ German translation for SNAP! - written by Jens Mšnig + written by Jens Mönig - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. @@ -171,10 +171,10 @@ SnapTranslator.dict.de = { /* Special characters: (see ) - €, Š \u00c4, \u00e4 - …, š \u00d6, \u00f6 - †, Ÿ \u00dc, \u00fc - § \u00df + Ä, ä \u00c4, \u00e4 + Ö, ö \u00d6, \u00f6 + Ü, ü \u00dc, \u00fc + ß \u00df */ // translations meta information diff --git a/lang-es.js b/lang-es.js index eb32a67..9efd961 100644 --- a/lang-es.js +++ b/lang-es.js @@ -4,9 +4,9 @@ Spanish translation for SNAP! - written by Jens Mšnig + written by Jens Mönig - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. @@ -171,10 +171,10 @@ SnapTranslator.dict.es = { /* Special characters: (see ) - €, Š \u00c4, \u00e4 - …, š \u00d6, \u00f6 - †, Ÿ \u00dc, \u00fc - § \u00df + Ä, ä \u00c4, \u00e4 + Ö, ö \u00d6, \u00f6 + Ü, ü \u00dc, \u00fc + ß \u00df */ // translations meta information diff --git a/lists.js b/lists.js index 30a2e22..fb27c63 100644 --- a/lists.js +++ b/lists.js @@ -4,10 +4,10 @@ list data structure and GUI for SNAP! - written by Jens Mšnig and Brian Harvey + written by Jens Mönig and Brian Harvey jens@moenig.org, bh@cs.berkeley.edu - Copyright (C) 2013 by Jens Mšnig and Brian Harvey + Copyright (C) 2013 by Jens Mönig and Brian Harvey This file is part of Snap!. diff --git a/morphic.js b/morphic.js index af98706..fb95258 100644 --- a/morphic.js +++ b/morphic.js @@ -5,10 +5,10 @@ a lively Web-GUI inspired by Squeak - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. @@ -1025,7 +1025,7 @@ Ian Reynolds contributed backspace key handling for Chrome. Davide Della Casa contributed performance optimizations for Firefox. - - Jens Mšnig + - Jens Mönig */ // Global settings ///////////////////////////////////////////////////// diff --git a/objects.js b/objects.js index a6b41f9..6a95ceb 100644 --- a/objects.js +++ b/objects.js @@ -6,10 +6,10 @@ based on morphic.js, blocks.js and threads.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/store.js b/store.js index 01f333d..669ef2f 100644 --- a/store.js +++ b/store.js @@ -4,10 +4,10 @@ saving and loading Snap! projects - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/threads.js b/threads.js index d3ef18b..6598796 100644 --- a/threads.js +++ b/threads.js @@ -6,10 +6,10 @@ based on morphic.js and blocks.js inspired by Scratch, Scheme and Squeak - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/widgets.js b/widgets.js index a4c5b1e..d773afd 100644 --- a/widgets.js +++ b/widgets.js @@ -4,10 +4,10 @@ additional GUI elements for morphic.js - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/xml.js b/xml.js index 94083e2..268ad29 100644 --- a/xml.js +++ b/xml.js @@ -4,10 +4,10 @@ a simple XML DOM, encoder and parser for morphic.js - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. -- cgit v1.3.1 From ec434a337676c80dd0d0672a36c05f2393529a81 Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Mon, 8 Apr 2013 22:13:16 -0400 Subject: Revert "Fixed an encoding issue" This reverts commit 4d37845b2e4de02ffa5a2e8a37812cca98e206d8. --- blocks.js | 4 ++-- byob.js | 4 ++-- cloud.js | 4 ++-- gui.js | 4 ++-- lang-de.js | 12 ++++++------ lang-es.js | 12 ++++++------ lists.js | 4 ++-- morphic.js | 6 +++--- objects.js | 4 ++-- store.js | 4 ++-- threads.js | 4 ++-- widgets.js | 4 ++-- xml.js | 4 ++-- 13 files changed, 35 insertions(+), 35 deletions(-) (limited to 'morphic.js') diff --git a/blocks.js b/blocks.js index 219446e..e756521 100644 --- a/blocks.js +++ b/blocks.js @@ -6,10 +6,10 @@ based on morphic.js inspired by Scratch - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/byob.js b/byob.js index 9912c4b..d147ced 100644 --- a/byob.js +++ b/byob.js @@ -6,10 +6,10 @@ based on morphic.js, widgets.js blocks.js, threads.js and objects.js inspired by Scratch - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/cloud.js b/cloud.js index eb8f3c7..8ef6344 100644 --- a/cloud.js +++ b/cloud.js @@ -4,9 +4,9 @@ a backend API for SNAP! - written by Jens Mönig + written by Jens Mšnig - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/gui.js b/gui.js index 7d5c0e1..4faa1a1 100644 --- a/gui.js +++ b/gui.js @@ -6,10 +6,10 @@ based on morphic.js, blocks.js, threads.js and objects.js inspired by Scratch - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/lang-de.js b/lang-de.js index ca63859..cd3d863 100644 --- a/lang-de.js +++ b/lang-de.js @@ -4,9 +4,9 @@ German translation for SNAP! - written by Jens Mönig + written by Jens Mšnig - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. @@ -171,10 +171,10 @@ SnapTranslator.dict.de = { /* Special characters: (see ) - Ä, ä \u00c4, \u00e4 - Ö, ö \u00d6, \u00f6 - Ü, ü \u00dc, \u00fc - ß \u00df + €, Š \u00c4, \u00e4 + …, š \u00d6, \u00f6 + †, Ÿ \u00dc, \u00fc + § \u00df */ // translations meta information diff --git a/lang-es.js b/lang-es.js index 9efd961..eb32a67 100644 --- a/lang-es.js +++ b/lang-es.js @@ -4,9 +4,9 @@ Spanish translation for SNAP! - written by Jens Mönig + written by Jens Mšnig - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. @@ -171,10 +171,10 @@ SnapTranslator.dict.es = { /* Special characters: (see ) - Ä, ä \u00c4, \u00e4 - Ö, ö \u00d6, \u00f6 - Ü, ü \u00dc, \u00fc - ß \u00df + €, Š \u00c4, \u00e4 + …, š \u00d6, \u00f6 + †, Ÿ \u00dc, \u00fc + § \u00df */ // translations meta information diff --git a/lists.js b/lists.js index fb27c63..30a2e22 100644 --- a/lists.js +++ b/lists.js @@ -4,10 +4,10 @@ list data structure and GUI for SNAP! - written by Jens Mönig and Brian Harvey + written by Jens Mšnig and Brian Harvey jens@moenig.org, bh@cs.berkeley.edu - Copyright (C) 2013 by Jens Mönig and Brian Harvey + Copyright (C) 2013 by Jens Mšnig and Brian Harvey This file is part of Snap!. diff --git a/morphic.js b/morphic.js index fb95258..af98706 100644 --- a/morphic.js +++ b/morphic.js @@ -5,10 +5,10 @@ a lively Web-GUI inspired by Squeak - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. @@ -1025,7 +1025,7 @@ Ian Reynolds contributed backspace key handling for Chrome. Davide Della Casa contributed performance optimizations for Firefox. - - Jens Mönig + - Jens Mšnig */ // Global settings ///////////////////////////////////////////////////// diff --git a/objects.js b/objects.js index 6a95ceb..a6b41f9 100644 --- a/objects.js +++ b/objects.js @@ -6,10 +6,10 @@ based on morphic.js, blocks.js and threads.js inspired by Scratch - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/store.js b/store.js index 669ef2f..01f333d 100644 --- a/store.js +++ b/store.js @@ -4,10 +4,10 @@ saving and loading Snap! projects - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/threads.js b/threads.js index 6598796..d3ef18b 100644 --- a/threads.js +++ b/threads.js @@ -6,10 +6,10 @@ based on morphic.js and blocks.js inspired by Scratch, Scheme and Squeak - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/widgets.js b/widgets.js index d773afd..a4c5b1e 100644 --- a/widgets.js +++ b/widgets.js @@ -4,10 +4,10 @@ additional GUI elements for morphic.js - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. diff --git a/xml.js b/xml.js index 268ad29..94083e2 100644 --- a/xml.js +++ b/xml.js @@ -4,10 +4,10 @@ a simple XML DOM, encoder and parser for morphic.js - written by Jens Mönig + written by Jens Mšnig jens@moenig.org - Copyright (C) 2013 by Jens Mönig + Copyright (C) 2013 by Jens Mšnig This file is part of Snap!. -- cgit v1.3.1 From f3bd991f0710cc41178d6dc41cc1e69dfd41c62b Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Mon, 8 Apr 2013 22:15:30 -0400 Subject: Switched to UTF-8 This fixes some encoding issues --- blocks.js | 4 ++-- byob.js | 4 ++-- cloud.js | 4 ++-- gui.js | 4 ++-- lang-de.js | 12 ++++++------ lang-es.js | 12 ++++++------ lists.js | 4 ++-- locale.js | Bin 13812 -> 6951 bytes morphic.js | 6 +++--- morphic.txt | Bin 60960 -> 30482 bytes objects.js | 4 ++-- store.js | 4 ++-- threads.js | 4 ++-- widgets.js | 4 ++-- xml.js | 4 ++-- 15 files changed, 35 insertions(+), 35 deletions(-) (limited to 'morphic.js') diff --git a/blocks.js b/blocks.js index e756521..061e176 100644 --- a/blocks.js +++ b/blocks.js @@ -6,10 +6,10 @@ based on morphic.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/byob.js b/byob.js index d147ced..c21cf11 100644 --- a/byob.js +++ b/byob.js @@ -6,10 +6,10 @@ based on morphic.js, widgets.js blocks.js, threads.js and objects.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/cloud.js b/cloud.js index 8ef6344..ccd9345 100644 --- a/cloud.js +++ b/cloud.js @@ -4,9 +4,9 @@ a backend API for SNAP! - written by Jens Mšnig + written by Jens Mönig - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/gui.js b/gui.js index 4faa1a1..07d4f07 100644 --- a/gui.js +++ b/gui.js @@ -6,10 +6,10 @@ based on morphic.js, blocks.js, threads.js and objects.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/lang-de.js b/lang-de.js index cd3d863..b5eb86f 100644 --- a/lang-de.js +++ b/lang-de.js @@ -4,9 +4,9 @@ German translation for SNAP! - written by Jens Mšnig + written by Jens Mönig - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. @@ -171,10 +171,10 @@ SnapTranslator.dict.de = { /* Special characters: (see ) - €, Š \u00c4, \u00e4 - …, š \u00d6, \u00f6 - †, Ÿ \u00dc, \u00fc - § \u00df + Ä, ä \u00c4, \u00e4 + Ö, ö \u00d6, \u00f6 + Ü, ü \u00dc, \u00fc + ß \u00df */ // translations meta information diff --git a/lang-es.js b/lang-es.js index eb32a67..893148a 100644 --- a/lang-es.js +++ b/lang-es.js @@ -4,9 +4,9 @@ Spanish translation for SNAP! - written by Jens Mšnig + written by Jens Mönig - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. @@ -171,10 +171,10 @@ SnapTranslator.dict.es = { /* Special characters: (see ) - €, Š \u00c4, \u00e4 - …, š \u00d6, \u00f6 - †, Ÿ \u00dc, \u00fc - § \u00df + Ä, ä \u00c4, \u00e4 + Ö, ö \u00d6, \u00f6 + Ü, ü \u00dc, \u00fc + ß \u00df */ // translations meta information diff --git a/lists.js b/lists.js index 30a2e22..71f8f65 100644 --- a/lists.js +++ b/lists.js @@ -4,10 +4,10 @@ list data structure and GUI for SNAP! - written by Jens Mšnig and Brian Harvey + written by Jens Mönig and Brian Harvey jens@moenig.org, bh@cs.berkeley.edu - Copyright (C) 2013 by Jens Mšnig and Brian Harvey + Copyright (C) 2013 by Jens Mönig and Brian Harvey This file is part of Snap!. diff --git a/locale.js b/locale.js index b3a99ea..11bbe92 100644 Binary files a/locale.js and b/locale.js differ diff --git a/morphic.js b/morphic.js index af98706..e28ca66 100644 --- a/morphic.js +++ b/morphic.js @@ -5,10 +5,10 @@ a lively Web-GUI inspired by Squeak - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. @@ -1025,7 +1025,7 @@ Ian Reynolds contributed backspace key handling for Chrome. Davide Della Casa contributed performance optimizations for Firefox. - - Jens Mšnig + - Jens Mönig */ // Global settings ///////////////////////////////////////////////////// diff --git a/morphic.txt b/morphic.txt index 9cacd90..afa6096 100755 Binary files a/morphic.txt and b/morphic.txt differ diff --git a/objects.js b/objects.js index a6b41f9..71a945c 100644 --- a/objects.js +++ b/objects.js @@ -6,10 +6,10 @@ based on morphic.js, blocks.js and threads.js inspired by Scratch - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/store.js b/store.js index 01f333d..bbf2a70 100644 --- a/store.js +++ b/store.js @@ -4,10 +4,10 @@ saving and loading Snap! projects - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/threads.js b/threads.js index d3ef18b..958a270 100644 --- a/threads.js +++ b/threads.js @@ -6,10 +6,10 @@ based on morphic.js and blocks.js inspired by Scratch, Scheme and Squeak - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/widgets.js b/widgets.js index a4c5b1e..dbeeefc 100644 --- a/widgets.js +++ b/widgets.js @@ -4,10 +4,10 @@ additional GUI elements for morphic.js - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. diff --git a/xml.js b/xml.js index 94083e2..877fff7 100644 --- a/xml.js +++ b/xml.js @@ -4,10 +4,10 @@ a simple XML DOM, encoder and parser for morphic.js - written by Jens Mšnig + written by Jens Mönig jens@moenig.org - Copyright (C) 2013 by Jens Mšnig + Copyright (C) 2013 by Jens Mönig This file is part of Snap!. -- cgit v1.3.1