emailuis/emailui/data/html/email_rtl.html
author Simon Howkins <simonh@symbian.org>
Thu, 25 Nov 2010 12:13:04 +0000
branchRCL_3
changeset 83 31a5fbf5db1d
parent 64 3533d4323edc
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

<html dir="rtl">
<header>
<script language="javascript">
function setEmailBodyDirection() {
    var htmlTagName = "html";
	var d = document.getElementById("body_frame").contentWindow.document;
	var a = d.getElementsByTagName(htmlTagName);
	if (a.length > 0 )  {
	    a[0].setAttribute("dir", "rtl");
    }
}
onload=setEmailBodyDirection;
</script>
<script language="javascript" src="email.js"></script>
</header>
<frameset rows="10%,*" border="0" id="email_frameSet" onLoad="hideImages('body_frame')">
<frame id="header_frame" src="header.html" >
<frame id="body_frame" src="temp/body.html" onLoad="setEmailBodyDirection()" >
</frameset>

</html>