Skip to content

Commit 1c280d1

Browse files
authored
release: v12.3.1
Merge pull request #9379 from google/rc/v12.3.1
2 parents 2bd8b63 + 587720d commit 1c280d1

File tree

72 files changed

+144
-2716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+144
-2716
lines changed

appengine/app.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ handlers:
7070
# Blockly files.
7171
- url: /static
7272
static_dir: static
73+
http_headers:
74+
Access-Control-Allow-Origin: "*"
7375
secure: always
7476

7577
# Storage API.

core/gesture.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,15 @@ export class Gesture {
467467
/* opt_noCaptureIdentifier */ true,
468468
),
469469
);
470+
this.boundEvents.push(
471+
browserEvents.conditionalBind(
472+
document,
473+
'pointercancel',
474+
null,
475+
this.handleUp.bind(this),
476+
/* opt_noCaptureIdentifier */ true,
477+
),
478+
);
470479

471480
e.preventDefault();
472481
e.stopPropagation();

core/touch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export const TOUCH_MAP: {[key: string]: string[]} = {
4646
'mouseup': ['pointerup', 'pointercancel'],
4747
'touchend': ['pointerup'],
4848
'touchcancel': ['pointercancel'],
49-
'pointerup': ['pointerup', 'pointercancel'],
5049
};
5150

5251
/** PID of queued long-press task. */

core/variable_map.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,11 @@ export class VariableMap
112112
const oldType = variable.getType();
113113
if (oldType === newType) return variable;
114114

115-
this.variableMap.get(variable.getType())?.delete(variable.getId());
115+
const oldTypeVariables = this.variableMap.get(oldType);
116+
oldTypeVariables?.delete(variable.getId());
117+
if (oldTypeVariables?.size === 0) {
118+
this.variableMap.delete(oldType);
119+
}
116120
variable.setType(newType);
117121
const newTypeVariables =
118122
this.variableMap.get(newType) ??

demos/minimap/icon.png

-4.14 KB
Binary file not shown.

demos/minimap/index.html

Lines changed: 0 additions & 91 deletions
This file was deleted.

0 commit comments

Comments
 (0)