fixup! Review all href usages of target="_blank"

Some badly written lines (`target= "_blank"`, notice the space) were
missed by the precious commit.
pull/707/head
Juan Navarro 2022-03-08 16:12:15 +01:00
parent 25bcc2cefc
commit a8de57addd
3 changed files with 47 additions and 45 deletions

View File

@ -66,9 +66,10 @@ public class Connection {
* Returns the status of the Connection. Can be:
* <ul>
* <li><code>pending</code>: if the Connection is waiting for any user to use
* its internal token to connect to the session, calling method <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect"
* target ="_blank">Session.connect</a> in OpenVidu Browser.</li>
* its internal token to connect to the session, calling method
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect">
* Session.connect
* </a> in OpenVidu Browser.</li>
* <li><code>active</code>: if the internal token of the Connection has already
* been used by some user to connect to the session, and it cannot be used
* again.</li>
@ -249,9 +250,10 @@ public class Connection {
/**
* Returns the data associated to the connection on the client-side. This value
* is set with second parameter of method <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect"
* target ="_blank">Session.connect</a> in OpenVidu Browser
* is set with second parameter of method
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect">
* Session.connect
* </a> in OpenVidu Browser
*/
public String getClientData() {
return clientData;

View File

@ -45,13 +45,14 @@ public class Publisher {
}
/**
* Returns the unique identifier of the <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> associated to this Publisher. Each Publisher is
* Returns the unique identifier of the
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> associated to this Publisher. Each Publisher is
* paired with only one Stream, so you can identify each Publisher by its
* <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html#streamId"
* target= "_blank"><code>Stream.streamId</code></a>
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html#streamId">
* <code>Stream.streamId</code>
* </a>
*/
public String getStreamId() {
return streamId;
@ -66,70 +67,69 @@ public class Publisher {
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public boolean hasVideo() {
return this.hasVideo;
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public boolean hasAudio() {
return this.hasAudio;
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public Boolean isAudioActive() {
return this.audioActive;
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public Boolean isVideoActive() {
return this.videoActive;
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public Integer getFrameRate() {
return this.frameRate;
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public String getTypeOfVideo() {
return this.typeOfVideo;
}
/**
* See properties of <a href=
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html"
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out
* more
* See properties of
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* Stream
* </a> object in OpenVidu Browser library to find out more
*/
public String getVideoDimensions() {
return this.videoDimensions;

View File

@ -81,7 +81,7 @@ public class Recording {
* specific session recording has ended. This module will remain up and running
* as long as the session remains active.<br>
* <br>
*
*
* <ul>
* <li><strong>Pros vs COMPOSED</strong>: the process of starting the recording
* will be noticeably faster. This can be very useful in use cases where a
@ -232,10 +232,10 @@ public class Recording {
/**
* URL of the recording. You can access the file from there. It is
* <code>null</code> until recording reaches "ready" or "failed" status. If
* <a href="https://docs.openvidu.io/en/stable/reference-docs/openvidu-config/"
* target= "_blank">OpenVidu Server configuration</a> property
* <code>OPENVIDU_RECORDING_PUBLIC_ACCESS</code> is false, this path will be
* secured with OpenVidu credentials
* <a href="https://docs.openvidu.io/en/stable/reference-docs/openvidu-config/">
* OpenVidu Server configuration
* </a> property <code>OPENVIDU_RECORDING_PUBLIC_ACCESS</code> is false,
* this path will be secured with OpenVidu credentials
*/
public String getUrl() {
return url;