-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
https://github.com/GameDistribution/GD-HTML5/wiki/SDK-Implementation
bag:
nextButton.addEventListener('mouseUp', function () {
if (typeof gdsdk !== 'undefined' && gdsdk.showBanner !== 'undefined') {
gdsdk.showBanner();
}
});good:
nextButton.addEventListener('mouseUp', function () {
if (typeof gdsdk !== 'undefined' && gdsdk.showBanner !== undefined) {
gdsdk.showBanner();
}
});very good:
nextButton.addEventListener('mouseUp', function () {
if (typeof gdsdk !== 'undefined' && gdsdk.showBanner) {
gdsdk.showBanner();
}
});perfect:
nextButton.addEventListener('mouseUp', function () {
window.gdsdk && gdsdk.showBanner && gdsdk.showBanner();
});Metadata
Metadata
Assignees
Labels
No labels