All Collections
Advanced Customization
Integration
Upscope compatibility with Prototype
Upscope compatibility with Prototype
To make Upscope compatible with prototype, include the following code before the Upscope installation code.
Joe avatar
Written by Joe
Updated over a week ago
<script>
if(window.Prototype) {
    delete Object.prototype.toJSON;
    delete Array.prototype.toJSON;
    delete Hash.prototype.toJSON;
    delete String.prototype.toJSON;
}
</script>
Did this answer your question?