Merge pull request #4967 from IgorNadj/patch-2

Add special flag to CMS preview requests
This commit is contained in:
Damian Mooyman 2016-01-22 15:15:12 +13:00
commit 2fb193cf7f

View File

@ -452,6 +452,9 @@
// No state available at all. // No state available at all.
this.setCurrentStateName(null); this.setCurrentStateName(null);
} }
// Mark url as a preview url so it can get special treatment
url += ((url.indexOf('?') === -1) ? '?' : '&') + 'CMSPreview=1';
// If this preview panel isn't visible at the moment, delay loading the URL until it (maybe) is later // If this preview panel isn't visible at the moment, delay loading the URL until it (maybe) is later
if (this.is('.column-hidden')) { if (this.is('.column-hidden')) {