2014-01-01 03:37:43 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-09-19 04:12:41 +08:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2017-04-14 03:22:39 +08:00
|
|
|
<%= discourse_stylesheet_link_tag 'embed', theme_key: nil %>
|
2015-08-07 05:18:00 +08:00
|
|
|
<%- unless customization_disabled? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= Theme.custom_stylesheet(session[:preview_style], :embedded) %>
|
2015-08-07 05:18:00 +08:00
|
|
|
<%- end %>
|
2014-03-21 02:34:51 +08:00
|
|
|
<%= javascript_include_tag 'break_string' %>
|
2014-01-01 03:37:43 +08:00
|
|
|
|
2015-09-19 04:12:41 +08:00
|
|
|
<%- if @topic_view && @topic_view.page_title.present? %>
|
|
|
|
<title><%= @topic_view.page_title %> - <%= SiteSetting.title %></title>
|
|
|
|
<%- end %>
|
|
|
|
|
2014-01-01 03:37:43 +08:00
|
|
|
<script>
|
|
|
|
(function() {
|
2014-01-04 03:45:22 +08:00
|
|
|
|
|
|
|
function postUp(msg) {
|
2014-01-01 03:37:43 +08:00
|
|
|
if (parent) {
|
2014-01-04 03:45:22 +08:00
|
|
|
parent.postMessage(msg, '<%= request.referer %>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function clickPostLink(e) {
|
|
|
|
var postId = e.target.getAttribute('data-link-to-post');
|
|
|
|
if (postId) {
|
|
|
|
var postElement = document.getElementById('post-' + postId);
|
|
|
|
if (postElement) {
|
|
|
|
var rect = postElement.getBoundingClientRect();
|
|
|
|
if (rect && rect.top) {
|
|
|
|
postUp({type: 'discourse-scroll', top: rect.top});
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-01-01 03:37:43 +08:00
|
|
|
}
|
|
|
|
}
|
2014-01-04 03:45:22 +08:00
|
|
|
|
|
|
|
window.onload = function() {
|
|
|
|
// Send a post message with our loaded height
|
|
|
|
postUp({type: 'discourse-resize', height: document['body'].offsetHeight});
|
|
|
|
|
2014-03-20 22:57:18 +08:00
|
|
|
var postLinks = document.querySelectorAll("a[data-link-to-post]"),
|
|
|
|
i;
|
|
|
|
|
|
|
|
for (i=0; i<postLinks.length; i++) {
|
2014-01-04 03:45:22 +08:00
|
|
|
postLinks[i].onclick = clickPostLink;
|
|
|
|
}
|
2014-03-20 22:57:18 +08:00
|
|
|
|
|
|
|
// Make sure all links in the iframe point to _blank
|
|
|
|
var cookedLinks = document.querySelectorAll('.cooked a');
|
|
|
|
for (i=0; i<cookedLinks.length; i++) {
|
|
|
|
cookedLinks[i].target = "_blank";
|
|
|
|
}
|
2014-03-21 02:34:51 +08:00
|
|
|
|
|
|
|
// Adjust all names
|
2014-03-21 04:04:50 +08:00
|
|
|
var names = document.querySelectorAll('.username a');
|
2014-03-21 02:34:51 +08:00
|
|
|
for (i=0; i<names.length; i++) {
|
|
|
|
var username = names[i].innerHTML;
|
|
|
|
if (username) {
|
|
|
|
names[i].innerHTML = new BreakString(username).break();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-04 03:45:22 +08:00
|
|
|
};
|
|
|
|
|
2014-01-01 03:37:43 +08:00
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<%= yield %>
|
|
|
|
</body>
|
2014-03-20 22:57:18 +08:00
|
|
|
</html>
|