openvidu/openvidu-browser/src/OpenViduInternal
Juan Navarro 4d004e4a9e Review all href usages of target="_blank"
Do not force the user's browser to open new tabs when navigating within
the documentation pages. We discussed about this and agreed that doing
so is user hostile and goes away from how HTTP links have been working
for 30 years (i.e. leave users decide if THEY want a new tab or not, by
how they open the links).

Used these regexes:

From: target="blank"
To: target="_blank"

From: (\]\((?!http)[^)]+\))\{:target="_blank"\}
To: $1

From: (\]\(https?://docs.openvidu.io[^)]+\))\{:target="_blank"\}
To: $1

From: href="((?!http)\S+)" target="_blank"
To: href="$1"

From: href="(https?://docs.openvidu.io\S+)" target="_blank"
To: href="$1"
2022-02-28 13:51:44 +01:00
..
Enums openvidu-browser: add TypeOfVideo 2022-01-27 14:42:01 +01:00
Events Review all href usages of target="_blank" 2022-02-28 13:51:44 +01:00
Interfaces openvidu-browser: Add cutomIceServers from 'joinRoom' rpc message 2022-02-11 22:38:51 +01:00
KurentoUtils/kurento-jsonrpc openvidu-browser: reconnection support for OpenVidu Enterprise 2021-12-23 15:28:23 +01:00
Logger openvidu-browser: Enabled warning logs in production mode 2022-02-02 12:31:27 +01:00
ScreenSharing openvidu-browser: Fixed possible non method defined 2020-12-14 12:48:46 +01:00
Utils openvidu-browser: install inherits and events packages 2022-01-26 17:38:23 +01:00
WebRtcPeer openvidu-browser: Use the RTCIceCandidate constructor on new candidates 2022-02-15 16:32:53 +01:00
WebRtcStats openvidu-browser: ensure Promise return on every resolve and reject 2022-01-26 12:18:05 +01:00