javascript - Dropbox dropins conflicts with underscore -
I have a web application that uses underscore and dropin dropbox APIs. Today, web applications suddenly stop working due to JS error at load time:
is undefined function
error comes from this statement After some debugging, I have found that _
global variable _
_ Each (...) ^
is no longer set to underscore
but in reality the dropin
is set to the Dropbox API Now, _ All parts of my application, which rely on
, have to be isolated.
Commenting on the line where dropin
is loading, fixes the problem, underscore
is now loaded OK However, for my Dropbox The application support is completely broken.
Question
Has anyone seen this error before? How can I solve it without making too many changes in my application code?
Comments
Post a Comment