mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-30 03:30:34 +02:00
tweaks
This commit is contained in:
34
components/sections/comments/index.js
Normal file
34
components/sections/comments/index.js
Normal file
@@ -0,0 +1,34 @@
|
||||
var React = require("react");
|
||||
|
||||
var style = {
|
||||
width: 'calc(960px + 2em)',
|
||||
marginTop: 0,
|
||||
borderTop: '1px solid rgba(255, 0, 0, 0.5)',
|
||||
paddingTop: '3em'
|
||||
};
|
||||
|
||||
var sectionHTML = (
|
||||
<section id="comments" style={style}>
|
||||
<h2>Comments and questions</h2>
|
||||
<div id="disqus_thread"/>
|
||||
</section>
|
||||
);
|
||||
|
||||
var CommentsAndQuestions = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Comments and Questions"
|
||||
};
|
||||
},
|
||||
componentDidMount: function() {
|
||||
if (typeof document !== "undefined") {
|
||||
var disqusScript = document.createElement("script");
|
||||
disqusScript.setAttribute("async", "async");
|
||||
disqusScript.src = "lib/site/disqus.js";
|
||||
document.head.appendChild(disqusScript);
|
||||
}
|
||||
},
|
||||
render: function() { return sectionHTML; }
|
||||
});
|
||||
|
||||
module.exports = CommentsAndQuestions;
|
Reference in New Issue
Block a user