saribe / eModal

Easy Modal for bootstrap, is a simple way to create modal dialogs using javascript.
http://saribe.github.io/eModal
271 stars 97 forks source link

Open iframe error #87

Open cerok opened 5 years ago

cerok commented 5 years ago

loadingHtml does not work with iframe unless i before use it with eModal.setEModalOptions(myModalOptions);

In your code you have: function iframe(params, title) { .. if (typeof data === 'object') { setEModalOptions(data); }

I think it must be

if (typeof params === 'object')

or rename parameter params as data