-
Type: New Feature
-
Status: Done
-
Priority: Medium
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: Integration with CBAT
-
Labels:None
-
Company:All Clients/Multiple Clients
-
Epic Link:
-
Sprint:DMS - Fall Sprint 8
Embedded UI Double Scroll Issue
Below script provided by CBATS team , needs to add on pages example create template.
// Get height of document
function getDocHeight(doc)
// send docHeight onload
function sendDocHeightMsg(e) {
var ht = getDocHeight();
parent.postMessage( JSON.stringify(
), '*' );
}
// assign onload handler
if ( window.addEventListener )
else if ( window.attachEvent )
{ // ie8 window.attachEvent('onload', sendDocHeightMsg); }