Removed 'null' setting

This commit is contained in:
Ashley M. Kirchner
2016-07-01 11:23:01 -06:00
parent 491bbacddd
commit 00a11f4343

View File

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