} />
} />
- } />
- } />
+ } />
+ } />
} />
} />
} />
diff --git a/client/homebrew/pages/sharePage/sharePage.jsx b/client/homebrew/pages/sharePage/sharePage.jsx
index 9695ee810..5bdfab22c 100644
--- a/client/homebrew/pages/sharePage/sharePage.jsx
+++ b/client/homebrew/pages/sharePage/sharePage.jsx
@@ -18,7 +18,8 @@ const SharePage = createClass({
displayName : 'SharePage',
getDefaultProps : function() {
return {
- brew : DEFAULT_BREW_LOAD
+ brew : DEFAULT_BREW_LOAD,
+ disableMeta : false
};
},
@@ -60,13 +61,21 @@ const SharePage = createClass({
},
render : function(){
+ const titleStyle = this.props.disableMeta ? { cursor: 'default' } : {};
+ const titleEl = {this.props.brew.title};
+
return
-
- {this.props.brew.title}
-
+ {
+ this.props.disableMeta ?
+ titleEl
+ :
+
+ {titleEl}
+
+ }