From e96b8cfe922b84963ace24739334b89c4b298848 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Mon, 25 May 2020 02:04:30 -0400 Subject: [PATCH] Initial Commit --- LICENSE | 2 +- MMM-MinimalCOVID19.js | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 MMM-MinimalCOVID19.js diff --git a/LICENSE b/LICENSE index 642c5ed..ef4a26a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Rushilwiz +Copyright (c) 2020 Rushil Umaretiya Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/MMM-MinimalCOVID19.js b/MMM-MinimalCOVID19.js new file mode 100644 index 0000000..7833590 --- /dev/null +++ b/MMM-MinimalCOVID19.js @@ -0,0 +1,12 @@ +Module.register("MMM-MinimalCOVID19", { + defaults: {}, + start: function () {}, + getDom: function() { + var element = document.createElement("div") + element.className = "myContent" + element.innerHTML = "Hello, World!" + return element + }, + notificationReceived: function() {}, + socketNotificationReceived: function() {}, +})