0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Added missing semicolons

no-issue
This commit is contained in:
Fabien O'Carroll 2019-03-19 13:59:07 +01:00
parent e553ea6e02
commit 5dfcbb6b5e

View file

@ -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) {