add + expander in place of collapser.
This commit is contained in:
		@@ -87,9 +87,12 @@ class Article extends React.Component {
 | 
				
			|||||||
						{c.author === story.author ? '[OP]' : ''} {c.author || '[Deleted]'}
 | 
											{c.author === story.author ? '[OP]' : ''} {c.author || '[Deleted]'}
 | 
				
			||||||
						{' '} | <HashLink to={'#' + cid} id={cid}>{moment.unix(c.date).fromNow()}</HashLink>
 | 
											{' '} | <HashLink to={'#' + cid} id={cid}>{moment.unix(c.date).fromNow()}</HashLink>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
						{hidden || hasChildren &&
 | 
											{hasChildren && (
 | 
				
			||||||
 | 
												hidden ?
 | 
				
			||||||
								<span className='collapser pointer' onClick={() => this.collapseComment(cid)}>–</span>
 | 
													<span className='collapser pointer' onClick={() => this.collapseComment(cid)}>–</span>
 | 
				
			||||||
						}
 | 
													:
 | 
				
			||||||
 | 
													<span className='collapser expander pointer' onClick={() => this.expandComment(cid)}>+</span>
 | 
				
			||||||
 | 
											)}
 | 
				
			||||||
					</p>
 | 
										</p>
 | 
				
			||||||
				</div>
 | 
									</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user