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

@ -453,6 +453,9 @@
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.is('.column-hidden')) {
this.setPendingURL(url);