diff options
Diffstat (limited to 'files/ru/conflicting/web/api/web_storage_api/index.html')
-rw-r--r-- | files/ru/conflicting/web/api/web_storage_api/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/conflicting/web/api/web_storage_api/index.html b/files/ru/conflicting/web/api/web_storage_api/index.html index 25f0170d91..cbcff26342 100644 --- a/files/ru/conflicting/web/api/web_storage_api/index.html +++ b/files/ru/conflicting/web/api/web_storage_api/index.html @@ -82,7 +82,7 @@ alert( "username = " + sessionStorage.getItem("username")); field.value = sessionStorage.getItem("autosave"); } - // Прослушивать изменения значения текстового поля + // Обрабатывать изменения значения текстового поля field.addEventListener("change", function() { // И сохранить результаты в объект хранилища сессий sessionStorage.setItem("autosave", field.value); |