support for plugins where the init method doesn't return a Promise

This commit is contained in:
Hakim El Hattab
2019-03-14 14:52:59 +01:00
parent 5301a9ea03
commit 6410ed15aa
5 changed files with 17 additions and 20 deletions

View File

@ -97,8 +97,6 @@ c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{b:/\{/,e:/\}/,i:/:/}]}});
}
} );
return Promise.resolve();
},
/**

View File

@ -84,8 +84,6 @@ var RevealMath = window.RevealMath || (function(){
} );
return Promise.resolve();
}
}

View File

@ -168,8 +168,6 @@ var RevealNotes = (function() {
}
return Promise.resolve();
},
open: openNotes

View File

@ -22,8 +22,6 @@ var RevealZoom = (function(){
}
} );
return Promise.resolve();
}
}