Skip to content

Commit

Permalink
Added author details
Browse files Browse the repository at this point in the history
  • Loading branch information
cosminpopescu14 committed May 4, 2020
1 parent 37fd5f1 commit 2e7a4be
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
Blockly.Blocks['displayCurrentDate'] = {
/*
* Block that display the current date time
* @Author: Popescu Ionut Cosmin (cosmin.popescu93@gmail.com)
* https://github.com/cosminpopescu14
*/
Blockly.Blocks['displayCurrentDate'] = {
init: function () {
this.appendDummyInput()
.appendField("Current Date");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
Blockly.Blocks['fromUnixTimeToDate'] = {
/*
* Block that convert a UNIX timestamp into a date format
* @Author: Popescu Ionut Cosmin (cosmin.popescu93@gmail.com)
* https://github.com/cosminpopescu14
*/
Blockly.Blocks['fromUnixTimeToDate'] = {
init: function() {
this.appendValueInput('VALUE')
.setCheck('Number')
Expand Down

0 comments on commit 2e7a4be

Please sign in to comment.