Skip to content

Commit 870e52b

Browse files
committed
Build for 3f224b3 fix: "is online?" -> "online?"
1 parent 02f4b79 commit 870e52b

18 files changed

+212
-542
lines changed
0 Bytes
Binary file not shown.

playgrounds/blockly_compressed_horizontal.js

Lines changed: 17 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blockly_compressed_vertical.js

Lines changed: 23 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blockly_uncompressed_horizontal.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blockly_uncompressed_vertical.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blocks_compressed.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blocks_compressed_horizontal.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blocks_compressed_vertical.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playgrounds/blocks_vertical/sensing.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,21 @@ Blockly.Blocks['sensing_dayssince2000'] = {
507507
}
508508
};
509509

510+
Blockly.Blocks['sensing_online'] = {
511+
/**
512+
* Block to report whether or not the system is online
513+
* @this Blockly.Block
514+
*/
515+
init: function() {
516+
this.jsonInit({
517+
"message0": Blockly.Msg.SENSING_ONLINE,
518+
"category": Blockly.Categories.sensing,
519+
"checkboxInFlyout": true,
520+
"extensions": ["colours_sensing", "output_boolean"]
521+
});
522+
}
523+
};
524+
510525
Blockly.Blocks['sensing_username'] = {
511526
/**
512527
* Block to report user's username

0 commit comments

Comments
 (0)