Merge pull request #3028 from coreos-inc/joseph.schorr/QUAY-841/munchkin-error-fix
Fix `Munchkin` lookup check
This commit is contained in:
commit
019ad01e70
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@
|
|||
function initMunchkin() {
|
||||
if(didInit === false) {
|
||||
didInit = true;
|
||||
if (!Munchkin || !Munchkin.init) {
|
||||
if (!window['Munchkin'] || !Munchkin.init) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue