We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3214714 commit 5d33dfeCopy full SHA for 5d33dfe
1 file changed
ietf/templates/meeting/agenda.html
@@ -104,7 +104,10 @@
104
if (rows[i].className == 'groupagenda')
105
{
106
var iframe = rows[i].firstElementChild.nextElementSibling.firstElementChild;
107
- iframe.setAttribute("src",iframe.getAttribute("xsrc"));
+ if (iframe.getAttribute("xsrc") != iframe.getAttribute("src"))
108
+ {
109
+ iframe.setAttribute("src",iframe.getAttribute("xsrc"));
110
+ }
111
r(iframe);
112
}
113
@@ -123,8 +126,8 @@
123
126
124
127
try
125
128
- docHeight = obj.contentWindow.document.height;
- obj.style.height = (docHeight + 20) * 1.05 + "px"
129
+ docHeight = obj.contentWindow.document.body.scrollHeight;
130
+ obj.height = docHeight;
131
132
catch (e) {}
133
0 commit comments