Fix some == with ===

This commit is contained in:
rejas
2019-06-04 09:51:51 +02:00
parent 99b4c43fd5
commit 5d39d85215
5 changed files with 5 additions and 5 deletions

View File

@@ -328,7 +328,7 @@ var MM = (function() {
var showWrapper = false;
Array.prototype.forEach.call(moduleWrappers, function(moduleWrapper) {
if (moduleWrapper.style.position == "" || moduleWrapper.style.position == "static") {
if (moduleWrapper.style.position === "" || moduleWrapper.style.position === "static") {
showWrapper = true;
}
});