mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
20 lines
450 B
Text
20 lines
450 B
Text
|
<!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>
|