From 3787c2f0fa1599c8362e8930b80c3ba9801a4881 Mon Sep 17 00:00:00 2001 From: Hoarfroster Date: Tue, 30 Jul 2024 11:58:41 +0800 Subject: [PATCH 1/2] fix: link --- .../ru/web/javascript/reference/global_objects/promise/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/files/ru/web/javascript/reference/global_objects/promise/index.md b/files/ru/web/javascript/reference/global_objects/promise/index.md index a9f337b1359c8e..1529b3ce7bb3a8 100644 --- a/files/ru/web/javascript/reference/global_objects/promise/index.md +++ b/files/ru/web/javascript/reference/global_objects/promise/index.md @@ -224,7 +224,6 @@ if ("Promise" in window) { - [Спецификация Promises/A+](http://promisesaplus.com/) - [Jake Archibald: JavaScript Promises: There and Back Again](http://www.html5rocks.com/en/tutorials/es6/promises/) - [Domenic Denicola: Callbacks, Promises, and Coroutines – Asynchronous Programming Pattern in JavaScript](http://de.slideshare.net/domenicdenicola/callbacks-promises-and-coroutines-oh-my-the-evolution-of-asynchronicity-in-javascript) -- [Matt Greer: JavaScript Promises ... In Wicked Detail](http://www.mattgreer.org/articles/promises-in-wicked-detail/) - [Forbes Lindesay: promisejs.org](https://www.promisejs.org/) - [Nolan Lawson: We have a problem with promises — Common mistakes with promises](http://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html) - [Promise polyfill](https://github.com/jakearchibald/es6-promise/) From 76c19f5417ccdc7d5dbe1c566cefa1426a23b3dd Mon Sep 17 00:00:00 2001 From: Leonid Vinogradov Date: Wed, 31 Jul 2024 00:49:26 +0300 Subject: [PATCH 2/2] update links in "See also" section --- .../reference/global_objects/promise/index.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/files/ru/web/javascript/reference/global_objects/promise/index.md b/files/ru/web/javascript/reference/global_objects/promise/index.md index 1529b3ce7bb3a8..303e3c70a020b1 100644 --- a/files/ru/web/javascript/reference/global_objects/promise/index.md +++ b/files/ru/web/javascript/reference/global_objects/promise/index.md @@ -221,10 +221,8 @@ if ("Promise" in window) { ## Смотрите также -- [Спецификация Promises/A+](http://promisesaplus.com/) -- [Jake Archibald: JavaScript Promises: There and Back Again](http://www.html5rocks.com/en/tutorials/es6/promises/) -- [Domenic Denicola: Callbacks, Promises, and Coroutines – Asynchronous Programming Pattern in JavaScript](http://de.slideshare.net/domenicdenicola/callbacks-promises-and-coroutines-oh-my-the-evolution-of-asynchronicity-in-javascript) -- [Forbes Lindesay: promisejs.org](https://www.promisejs.org/) -- [Nolan Lawson: We have a problem with promises — Common mistakes with promises](http://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html) -- [Promise polyfill](https://github.com/jakearchibald/es6-promise/) -- [Udacity: JavaScript Promises](https://www.udacity.com/course/javascript-promises--ud898) +- [Полифил `Promise` в `core-js`](https://github.com/zloirock/core-js#ecmascript-promise) +- [Руководство по использованию промисов](/ru/docs/Web/JavaScript/Guide/Using_promises) +- [Спецификация Promises/A+](https://promisesaplus.com/) +- [JavaScript Promises: an introduction](https://web.dev/articles/promises) на web.dev (2013) +- [Callbacks, Promises, and Coroutines: Asynchronous Programming Patterns in JavaScript](https://www.slideshare.net/slideshow/callbacks-promises-and-coroutines-oh-my-the-evolution-of-asynchronicity-in-javascript/9953720) — презентация Доменика Дениколы (2011)