diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-07-27 15:17:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 22:17:31 +0300 |
commit | 7a2cfc4872ec27ef4ea5aa79f01dcb03a9a24d88 (patch) | |
tree | 520bd15be92236f2e90ab4b66389759ebc09f54f /files/ru/web/api/windoworworkerglobalscope/btoa/index.html | |
parent | 20c7fd773df964681f7dd9d7a305293abd5a04ad (diff) | |
download | translated-content-7a2cfc4872ec27ef4ea5aa79f01dcb03a9a24d88.tar.gz translated-content-7a2cfc4872ec27ef4ea5aa79f01dcb03a9a24d88.tar.bz2 translated-content-7a2cfc4872ec27ef4ea5aa79f01dcb03a9a24d88.zip |
remove link 'title' attributes that's just the 'href' (ru, part 4) (#1748)
Diffstat (limited to 'files/ru/web/api/windoworworkerglobalscope/btoa/index.html')
-rw-r--r-- | files/ru/web/api/windoworworkerglobalscope/btoa/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/windoworworkerglobalscope/btoa/index.html b/files/ru/web/api/windoworworkerglobalscope/btoa/index.html index faae953fbd..24f0c7ab38 100644 --- a/files/ru/web/api/windoworworkerglobalscope/btoa/index.html +++ b/files/ru/web/api/windoworworkerglobalscope/btoa/index.html @@ -30,7 +30,7 @@ var decodedData = window.atob(encodedData); // decode the string <p>В большинстве браузеров, вызов <code>window.btoa()</code> на Unicode строке выбросит исключение Character Out Of Range (Символ вне допустимого диапазона).</p> -<p>Чтобы избежать этого, воспользуйтесь паттерном, предложенным <a class="external" href="http://ecmanaut.blogspot.com/2006/07/encoding-decoding-utf8-in-javascript.html" title="http://ecmanaut.blogspot.com/2006/07/encoding-decoding-utf8-in-javascript.html">Johan Sundström</a>:</p> +<p>Чтобы избежать этого, воспользуйтесь паттерном, предложенным <a class="external" href="http://ecmanaut.blogspot.com/2006/07/encoding-decoding-utf8-in-javascript.html">Johan Sundström</a>:</p> <pre class="brush:js">function utf8_to_b64(str) { return window.btoa(unescape(encodeURIComponent(str))); |