-
-
- = MAX_TITLE_LENGTH })}>
- {this.props.title.length}/{MAX_TITLE_LENGTH}
-
- ;
- },
-
-});
-
-module.exports = EditTitle;
diff --git a/client/homebrew/navbar/reddit.navitem.jsx b/client/homebrew/navbar/reddit.navitem.jsx
deleted file mode 100644
index 1d9f95604..000000000
--- a/client/homebrew/navbar/reddit.navitem.jsx
+++ /dev/null
@@ -1,44 +0,0 @@
-const React = require('react');
-const createClass = require('create-react-class');
-const Nav = require('naturalcrit/nav/nav.jsx');
-
-const MAIN_URL = 'https://www.reddit.com/r/UnearthedArcana/submit?selftext=true';
-
-
-const RedditShare = createClass({
- displayName : 'RedditShareNavItem',
- getDefaultProps : function() {
- return {
- brew : {
- title : '',
- sharedId : '',
- text : ''
- }
- };
- },
-
- getText : function(){
-
- },
-
-
- handleClick : function(){
- const url = [
- MAIN_URL,
- `title=${encodeURIComponent(this.props.brew.title ? this.props.brew.title : 'Check out my brew!')}`,
- `text=${encodeURIComponent(this.props.brew.text)}`
- ].join('&');
-
- window.open(url, '_blank');
- },
-
-
- render : function(){
- return