From db8d51f458a69a57ac2d6f0b66136aded6cd8509 Mon Sep 17 00:00:00 2001 From: Rish Date: Sat, 23 Feb 2019 17:29:02 +0700 Subject: [PATCH] Updated members SDK --- ghost/sdk/theme-dropin/src/index.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ghost/sdk/theme-dropin/src/index.js b/ghost/sdk/theme-dropin/src/index.js index 0f94f8c913..3f95f7a65d 100644 --- a/ghost/sdk/theme-dropin/src/index.js +++ b/ghost/sdk/theme-dropin/src/index.js @@ -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';