Bug #31718 ยป 31718.diff
Resources/Private/Layouts/popup.html | ||
---|---|---|
var liveUrl = '{liveUrl}';
|
||
var wsUrl = '{wsUrl}';
|
||
var wsSettingsUrl = '{wsSettingsUrl}';
|
||
document.domain = '{backendDomain}';
|
||
try {
|
||
document.domain = '{backendDomain}';
|
||
} catch(e) {}
|
||
function resize(height) {
|
||
// poor way to avoid that we require any scrollbars within the frames
|
Resources/Private/Templates/Preview/Preview.html | ||
---|---|---|
// @todo redirect to split module if this is opened standalone
|
||
// having this is very important, otherwise the parent.resize call will fail
|
||
document.domain = '{backendDomain}';
|
||
try {
|
||
document.domain = '{backendDomain}';
|
||
} catch(e) {}
|
||
var asNumber = function(val) {
|
||
return isNaN(val) ? 0 : parseInt(val, 10);
|
Resources/Private/Templates/Review/SingleIndex.html | ||
---|---|---|
<f:section name="main">
|
||
<script type="text/javascript">
|
||
document.domain = '{backendDomain}';
|
||
try {
|
||
document.domain = '{backendDomain}';
|
||
} catch(e) {}
|
||
</script>
|
||
<div id="workspacegrid"></div>
|