Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Fixed issue: cleanup() function not call in onerror handler. #40

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion postscribe.js
Expand Up @@ -448,8 +448,8 @@
}, },


onerror: function() { onerror: function() {
error({ message: 'remote script failed ' + el.src });
cleanup(); cleanup();
error({ message: 'remote script failed ' + el.src });
} }
}); });
}; };
Expand Down