mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
24 lines
535 B
JavaScript
24 lines
535 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Blockly module for the browser. This includes Blockly core
|
|
* and built in blocks, the JavaScript code generator and the English block
|
|
* localization files.
|
|
*/
|
|
|
|
/* eslint-disable */
|
|
'use strict';
|
|
|
|
// Include the EN Locale by default.
|
|
Blockly.setLocale(En);
|
|
|
|
Blockly.Blocks = Blockly.Blocks || {};
|
|
Object.keys(BlocklyBlocks).forEach(function (k) {
|
|
Blockly.Blocks[k] = BlocklyBlocks[k];
|
|
});
|
|
|
|
Blockly.JavaScript = BlocklyJS; |