openvidu/openvidu-browser
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
..
config openvidu-browser: fix TypeDoc config to properly exclude unwanted folders 2022-01-12 03:38:45 +01:00
src Review all href usages of target="_blank" 2022-02-28 13:51:44 +01:00
.gitignore openvidu-browser: static folder ignored 2019-08-09 14:06:05 +02:00
.npmignore npmignore files ignoring docs/ folders 2018-09-14 14:51:01 +02:00
LICENSE openvidu-browser 2.0.0 refactoring 2018-04-26 15:33:47 +02:00
generate-docs.sh openvidu-browser: fix TypeDoc config to properly exclude unwanted folders 2022-01-12 03:38:45 +01:00
package-lock.json openvidu-browser: Fixed bug using speaking events 2022-02-11 17:33:45 +01:00
package.json openvidu-browser: replace mime-types with mime dependency 2022-01-26 18:34:50 +01:00
tsconfig.json openvidu-browser: tsconfig.json file to root dir 2019-04-22 14:49:42 +02:00