0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Cleaned up mode utils

This commit is contained in:
Rishabh 2021-11-02 17:11:31 +05:30
parent 0dfd0b6b6b
commit 1dab76a274

View file

@ -1,6 +1,10 @@
export const isPreviewMode = function () {
const [path, qs] = window.location.hash.substr(1).split('?');
return (path === '/portal/preview') || (path === '/portal/preview/offer') || (path === '/portal' && qs);
return isNormalPreviewMode() || isOfferPreviewMode();
};
export const isNormalPreviewMode = function () {
const [path] = window.location.hash.substr(1).split('?');
return (path === '/portal/preview');
};
export const isOfferPreviewMode = function () {