0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Updated members SDK

This commit is contained in:
Rish 2019-02-23 17:29:02 +07:00
parent 7c360aa51d
commit db8d51f458

View file

@ -10,10 +10,14 @@ function reload(success) {
}
function show(el) {
el.style.display = 'block';
if (el) {
el.style.display = 'block';
}
}
function hide(el) {
el.style.display = 'none';
if (el) {
el.style.display = 'none';
}
}
const version = 'v2';