Removed ability to copy a permalink on mobile

Этот коммит содержится в:
Reed Garmsen
2016-02-17 13:44:41 -08:00
родитель daa06ad41e
Коммит 6cc67e58f2
3 изменённых файлов: 58 добавлений и 52 удалений

Просмотреть файл

@@ -97,22 +97,24 @@ class RhsComment extends React.Component {
var dropdownContents = [];
dropdownContents.push(
<li
key='rhs-root-permalink'
role='presentation'
>
<a
href='#'
onClick={this.handlePermalink}
if (!Utils.isMobile()) {
dropdownContents.push(
<li
key='rhs-root-permalink'
role='presentation'
>
<FormattedMessage
id='rhs_comment.permalink'
defaultMessage='Permalink'
/>
</a>
</li>
);
<a
href='#'
onClick={this.handlePermalink}
>
<FormattedMessage
id='rhs_comment.permalink'
defaultMessage='Permalink'
/>
</a>
</li>
);
}
if (isOwner) {
dropdownContents.push(