Draggable / formeo

Drag & Drop Form Builder
http://draggable.github.io/formeo/
MIT License
533 stars 196 forks source link

any luck running in ie11? #230

Open beamwerks opened 5 years ago

beamwerks commented 5 years ago

i was able to get a previous version running using some clues from this post https://github.com/Draggable/formeo/issues/84

but with 1.1.2, i don't get any errors from ie11, it just simply doesn't load anything into my editor div. no errors are thrown so not sure where to start. works great in chrome though!

kevinchappell commented 5 years ago

Can you share your formeo code? I wonder if this is still related missing Object methods

beamwerks commented 5 years ago

i stripped it down to the simplest version and put in cdn links. the renderer works fine in ie, so it's just the editor that isn't happy. by the way, you have a paypal or other way i can send you some lunch money? this has really been a nice addition to my websites

<html> <body> <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <link href="https://draggable.github.io/formeo/assets/css/formeo.min.css" rel="stylesheet" /> <!-- ie polyfills --> <script src="https://polyfill.io/v3/polyfill.min.jsfeatures=Object.assign%2CObject.entries%2CObject.values%2Cfetch%2Ces5%2Ces6"></script> <script src="https://draggable.github.io/formeo/assets/js/formeo.min.js" defer></script> Test Create <div id="build-form"></div> <script> $(document).ready(function () { var formeo = new FormeoEditor({ editorContainer: '#build-form', svgSprite: 'https://draggable.github.io/formeo/assets/img/formeo-sprite.svg' }); }) </script> </body> </html>

(edited to format code correctly)