Last active
January 20, 2020 10:44
-
-
Save Marko-M/3e407f528320fffa7cafef0746f5e69c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* DevGenii #8: Dummy Postpay JavaScript | |
*/ | |
define(function () { | |
window.Postpay = { | |
renderElement: function (el) { | |
el.innerHTML = 'Postpay!' | |
}, | |
hideElement: function (el) { | |
el.style.display = 'none'; | |
} | |
}; | |
return window.Postpay; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment