I hate it. It's fixes like this that bog Snap! down.
pull/89/head
jmoenig 2019-02-19 22:08:30 +01:00
rodzic b0d4b4fd1b
commit 1a3592de7f
3 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -40,6 +40,9 @@
* Greek, thanks, Alexandros!
* German
### 2019-02-19
* Threads: fixed #2332. I hate it. It's fixes like this that bog Snap! down.
### 2019-02-18
* Objects: enable sprite nesting via the context menu

Wyświetl plik

@ -7,7 +7,7 @@
<script type="text/javascript" src="src/morphic.js?version=2019-02-07"></script>
<script type="text/javascript" src="src/widgets.js?version=2018-10-02"></script>
<script type="text/javascript" src="src/blocks.js?version=2019-02-15"></script>
<script type="text/javascript" src="src/threads.js?version=2019-01-28"></script>
<script type="text/javascript" src="src/threads.js?version=2019-02-19"></script>
<script type="text/javascript" src="src/objects.js?version=2019-02-18"></script>
<script type="text/javascript" src="src/gui.js?version=2019-02-07"></script>
<script type="text/javascript" src="src/paint.js?version=2018-10-02"></script>

Wyświetl plik

@ -62,7 +62,7 @@ StageMorph, SpriteMorph, StagePrompterMorph, Note, modules, isString, copy,
isNil, WatcherMorph, List, ListWatcherMorph, alert, console, TableMorph, Color,
TableFrameMorph, ColorSlotMorph, isSnapObject, Map*/
modules.threads = '2019-January-28';
modules.threads = '2019-February-19';
var ThreadManager;
var Process;
@ -2464,7 +2464,7 @@ Process.prototype.reportTypeOf = function (thing) {
if (thing instanceof List) {
return 'list';
}
if (!isNaN(+thing)) {
if (parseFloat(thing) === +thing && !isNaN(+thing)) { // I hate this! -Jens
return 'number';
}
if (isString(thing)) {