You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If raptor is loaded after bootstrap, $.fn.modal becomes undefined. If it loads before bootstrap, raptor breaks entirely. Very strange behavior.
Currently, the only work-around I've found is to insert <script>window.modal = $.fn.modal;</script> before loading raptor.js and <script>$.fn.modal = window.modal;</script> after it. This is a pretty serious compatibility issue; I may have to use a different editor if I encounter more incompatibilities.
The text was updated successfully, but these errors were encountered:
If raptor is loaded after bootstrap, $.fn.modal becomes undefined. If it loads before bootstrap, raptor breaks entirely. Very strange behavior.
Currently, the only work-around I've found is to insert
<script>window.modal = $.fn.modal;</script>
before loading raptor.js and<script>$.fn.modal = window.modal;</script>
after it. This is a pretty serious compatibility issue; I may have to use a different editor if I encounter more incompatibilities.The text was updated successfully, but these errors were encountered: