diff --git a/ghost/sdk/layer1/index.js b/ghost/sdk/layer1/index.js index 6b6786af5f..d181da816d 100644 --- a/ghost/sdk/layer1/index.js +++ b/ghost/sdk/layer1/index.js @@ -22,7 +22,7 @@ module.exports = function layer1(options) { }); return init(gateway).then(function () { return gateway; - }) + }); }); function getToken({audience}) { @@ -54,7 +54,7 @@ module.exports = function layer1(options) { } return members; -} +}; function gatewayFn(method, opts = {}) { return function (gateway) { @@ -66,7 +66,7 @@ function gatewayFn(method, opts = {}) { resolve(res); }); }); - } + }; } function loadFrame(src, container = document.body) {