kopia lustrzana https://github.com/backface/turtlestitch
updated version and history
(and tweaked some semicolons to please static code analysis)pull/29/head
rodzic
c3992f5ec5
commit
c9af72a665
|
@ -149,7 +149,7 @@ isSnapObject, copy, PushButtonMorph, SpriteIconMorph, Process, AlignmentMorph*/
|
|||
|
||||
// Global stuff ////////////////////////////////////////////////////////
|
||||
|
||||
modules.blocks = '2016-November-29';
|
||||
modules.blocks = '2016-December-01';
|
||||
|
||||
var SyntaxElementMorph;
|
||||
var BlockMorph;
|
||||
|
|
4
gui.js
4
gui.js
|
@ -5528,7 +5528,7 @@ ProjectDialogMorph.prototype.buildFilterField = function () {
|
|||
});
|
||||
|
||||
if (myself.listField.elements.length === 0) {
|
||||
myself.listField.elements.push('(no matches)')
|
||||
myself.listField.elements.push('(no matches)');
|
||||
}
|
||||
|
||||
myself.clearDetails();
|
||||
|
@ -6064,7 +6064,7 @@ ProjectDialogMorph.prototype.edit = function () {
|
|||
ProjectDialogMorph.prototype.fixLayout = function () {
|
||||
var th = fontHeight(this.titleFontSize) + this.titlePadding * 2,
|
||||
thin = this.padding / 2,
|
||||
inputField = this.nameField || this.filterField;
|
||||
inputField = this.nameField || this.filterField,
|
||||
oldFlag = Morph.prototype.trackChanges;
|
||||
|
||||
Morph.prototype.trackChanges = false;
|
||||
|
|
|
@ -3157,3 +3157,4 @@ http://snap.berkeley.edu/run#cloud:Username=jens&ProjectName=rotation
|
|||
161201
|
||||
------
|
||||
* GUI: fixed #1540
|
||||
* Morphic, Blocks, GUI: Filter Project Names in the “open” dialog, thanks, Bernat!!
|
||||
|
|
|
@ -1136,7 +1136,7 @@
|
|||
|
||||
/*global window, HTMLCanvasElement, FileReader, Audio, FileList*/
|
||||
|
||||
var morphicVersion = '2016-November-28';
|
||||
var morphicVersion = '2016-December-01';
|
||||
var modules = {}; // keep track of additional loaded modules
|
||||
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
|
||||
|
||||
|
@ -2024,7 +2024,7 @@ Color.prototype.inverted = function () {
|
|||
255 - this.g,
|
||||
255 - this.b
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
// Points //////////////////////////////////////////////////////////////
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue