openvidu/openvidu-browser/src
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
..
OpenVidu Review all href usages of target="_blank" 2022-02-28 13:51:44 +01:00
OpenViduInternal Review all href usages of target="_blank" 2022-02-28 13:51:44 +01:00
Main.ts Fix comment context. Add end empty line 2021-06-21 15:07:32 +02:00
index.ts openvidu-browser: add TypeOfVideo 2022-01-27 14:42:01 +01:00