mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 02:02:14 +01:00 
			
		
		
		
	Add rel="noopener" to context menu links.
This commit is contained in:
		
							parent
							
								
									cf33ed58c1
								
							
						
					
					
						commit
						15c730a22a
					
				@ -74,7 +74,7 @@ module.exports = React.createClass({
 | 
				
			|||||||
        if (this.props.onFinished) this.props.onFinished();
 | 
					        if (this.props.onFinished) this.props.onFinished();
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    onLinkClick: function() {
 | 
					    closeMenu: function() {
 | 
				
			||||||
        if (this.props.onFinished) this.props.onFinished();
 | 
					        if (this.props.onFinished) this.props.onFinished();
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -147,7 +147,7 @@ module.exports = React.createClass({
 | 
				
			|||||||
        permalinkButton = (
 | 
					        permalinkButton = (
 | 
				
			||||||
            <div className="mx_MessageContextMenu_field">
 | 
					            <div className="mx_MessageContextMenu_field">
 | 
				
			||||||
                <a href={ "https://matrix.to/#/" + this.props.mxEvent.getRoomId() +"/"+ this.props.mxEvent.getId() }
 | 
					                <a href={ "https://matrix.to/#/" + this.props.mxEvent.getRoomId() +"/"+ this.props.mxEvent.getId() }
 | 
				
			||||||
                   target="_blank" onClick={ this.onLinkClick }>Permalink</a>
 | 
					                  target="_blank" rel="noopener" onClick={ this.closeMenu }>Permalink</a>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -161,8 +161,8 @@ module.exports = React.createClass({
 | 
				
			|||||||
        if( typeof(this.props.mxEvent.event.content.external_url) === "string") {
 | 
					        if( typeof(this.props.mxEvent.event.content.external_url) === "string") {
 | 
				
			||||||
          externalURLButton = (
 | 
					          externalURLButton = (
 | 
				
			||||||
              <div className="mx_MessageContextMenu_field">
 | 
					              <div className="mx_MessageContextMenu_field">
 | 
				
			||||||
                  <a target="_blank" href={ this.props.mxEvent.event.content.external_url }
 | 
					                  <a href={ this.props.mxEvent.event.content.external_url }
 | 
				
			||||||
                     onClick={ this.onLinkClick }>Source URL</a>
 | 
					                    rel="noopener" target="_blank"  onClick={ this.closeMenu }>Source URL</a>
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
          );
 | 
					          );
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user