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
Had a strange issue that made lodlive stop working. Another script overwrote the global jquery variable so that none of the plugins were available to lodlive anymore. Angular.element().lodlive worked the whole time - most likely because angular keeps its own pointer to jquery. Lodlive may need to do the same to prevent this type of thing from happening with other external scripts.
The text was updated successfully, but these errors were encountered:
I have had the exact same issue. Got round it by exporting LodLive as a js module exports.LodLive = LodLive;
and then instead of using the jquery function I created it using the same logic it uses: var ele = $('#lodlive'); var options = { profile: MyProfile, firstUri: 'http://a.b.c' }; var ll= new LodLive(el, options.profile); ele.data('lodlive-instance', ll); ll.init(options.firstUri);
Had a strange issue that made lodlive stop working. Another script overwrote the global jquery variable so that none of the plugins were available to lodlive anymore. Angular.element().lodlive worked the whole time - most likely because angular keeps its own pointer to jquery. Lodlive may need to do the same to prevent this type of thing from happening with other external scripts.
The text was updated successfully, but these errors were encountered: