Merge pull request #366 from KirAsh4/upstream-dev

Removed 'null' setting
This commit is contained in:
Michael Teeuw 2016-07-01 19:58:43 +02:00 committed by GitHub
commit 1bb72262ba
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Edit Alert Module to display title & message if they are provided in the notification (Issue #300)
- Removed 'null' reference from updateModuleContent(). This fixes recent Edge and Internet Explorer browser displays (Issue #319)
### Changed
- Added default string to calendar titleReplace.

View File

@ -144,7 +144,7 @@ var MM = (function() {
var moduleWrapper = document.getElementById(module.identifier);
var contentWrapper = moduleWrapper.getElementsByClassName("module-content")[0];
contentWrapper.innerHTML = null;
contentWrapper.innerHTML = "";
contentWrapper.appendChild(content);
};