aboutsummaryrefslogtreecommitdiff
path: root/files/ru/learn
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-27 14:15:05 -0400
committerGitHub <noreply@github.com>2021-07-27 21:15:05 +0300
commit20c7fd773df964681f7dd9d7a305293abd5a04ad (patch)
tree98e48d964b4cabfdea7bf107e39459c393b21558 /files/ru/learn
parent2f530bed8ebb6853b8c033979ef956575100bdf4 (diff)
downloadtranslated-content-20c7fd773df964681f7dd9d7a305293abd5a04ad.tar.gz
translated-content-20c7fd773df964681f7dd9d7a305293abd5a04ad.tar.bz2
translated-content-20c7fd773df964681f7dd9d7a305293abd5a04ad.zip
remove link 'title' attributes that's just the 'href' (ru, part 3) (#1746)
Diffstat (limited to 'files/ru/learn')
-rw-r--r--files/ru/learn/forms/how_to_build_custom_form_controls/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/learn/forms/how_to_build_custom_form_controls/index.html b/files/ru/learn/forms/how_to_build_custom_form_controls/index.html
index 4d256c623b..9c987273c5 100644
--- a/files/ru/learn/forms/how_to_build_custom_form_controls/index.html
+++ b/files/ru/learn/forms/how_to_build_custom_form_controls/index.html
@@ -413,7 +413,7 @@ original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets
<p>В коде который мы собираемся написать, для выполнения всех необходимых действий мы будем использовать стандартный DOM API. Однако, хотя поддержка DOM API в браузерах стала гораздо лучше, все ещё есть нюансы с устраевшеними браузерами  (особенно со старым добрым Internet Explorer).</p>
-<p>Чтобы избежать неприятностей с устаревшими браузерами есть два способа: использовать отдельный фреймворк такой как <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external" title="https://github.com/julienw/dollardom">$dom</a>, <a href="http://prototypejs.org/" rel="external" title="http://prototypejs.org/">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, и т.п., или самостоятельно реализовать недостающие функции которые вам нужны (что можно легко сделать через условную загрузку, например используя библиотеку <a href="http://yepnopejs.com/" rel="external">yepnope</a>).</p>
+<p>Чтобы избежать неприятностей с устаревшими браузерами есть два способа: использовать отдельный фреймворк такой как <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external" title="https://github.com/julienw/dollardom">$dom</a>, <a href="http://prototypejs.org/" rel="external">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, и т.п., или самостоятельно реализовать недостающие функции которые вам нужны (что можно легко сделать через условную загрузку, например используя библиотеку <a href="http://yepnopejs.com/" rel="external">yepnope</a>).</p>
<p>Мы планируем использовать следующие функции (от самых рискованных до самых безопасных):</p>