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:
parent
0dfd0b6b6b
commit
1dab76a274
1 changed files with 6 additions and 2 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Add table
Reference in a new issue