discourse/app/views/layouts/embed.html.erb
2013-12-31 12:26:24 -05:00

20 lines
450 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<%= stylesheet_link_tag 'embed' %>
<script>
(function() {
window.onload = function() {
if (parent) {
// Send a post message with our loaded height
parent.postMessage({type: 'discourse-resize', height: document['body'].offsetHeight}, '<%= request.referer %>');
}
}
})();
</script>
</head>
<body>
<%= yield %>
</body>
</html>