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:
parent
7c360aa51d
commit
db8d51f458
1 changed files with 6 additions and 2 deletions
|
@ -10,10 +10,14 @@ function reload(success) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function show(el) {
|
function show(el) {
|
||||||
|
if (el) {
|
||||||
el.style.display = 'block';
|
el.style.display = 'block';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
function hide(el) {
|
function hide(el) {
|
||||||
|
if (el) {
|
||||||
el.style.display = 'none';
|
el.style.display = 'none';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const version = 'v2';
|
const version = 'v2';
|
||||||
|
|
Loading…
Add table
Reference in a new issue