-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Converted pt-BR/docs/web/api/batterymanager/dischargingtimecha… #7243
Changes from all commits
e2a235e
c6f2872
7707a09
ac6b728
24ff223
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,35 @@ | ||||||||||||||||||
--- | ||||||||||||||||||
title: BatteryManager.ondischargingtimechange | ||||||||||||||||||
slug: Web/API/BatteryManager/dischargingtimechange_event | ||||||||||||||||||
tags: | ||||||||||||||||||
- API | ||||||||||||||||||
- Battery API | ||||||||||||||||||
- Event Handler | ||||||||||||||||||
- Propriedade | ||||||||||||||||||
- Referencia | ||||||||||||||||||
translation_of: Web/API/BatteryManager/ondischargingtimechange | ||||||||||||||||||
original_slug: Web/API/BatteryManager/ondischargingtimechange | ||||||||||||||||||
--- | ||||||||||||||||||
|
||||||||||||||||||
{{APIRef("Battery API")}} | ||||||||||||||||||
|
||||||||||||||||||
Especifica um _event listener_ para receber eventos {{event("dischargingtimechange")}}. Esses eventos ocorrem quando a propriedade {{domxref("BatteryManager.dischargingTime","dischargingTime")}} (tempo de descarregamento) da bateria é atualizada. | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
|
||||||||||||||||||
## Sintaxe | ||||||||||||||||||
|
||||||||||||||||||
navigator.battery.ondischargingtimechange = funcRef | ||||||||||||||||||
|
||||||||||||||||||
Onde `funcRef` é uma função para ser chamada quando o evento {{event("dischargingtimechange")}} ocorre. | ||||||||||||||||||
Comment on lines
+18
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Essa parte aqui eu não consigo adicionar a sugestão como as demais porque a formatação da página se confunde com o código.. ## Sintaxe Use o nome do evento em métodos como {{domxref("EventTarget.addEventListener", "addEventListener()")}} ou defina uma propriedade do manipulador de eventos. ```js addEventListener('dischargingtimechange', (event) => { }); ondischargingtimechange = (event) => { }; ``` ## Tipo de evento _Um {{domxref("Evento")}} genérico._ ## Exemplo ### Conteúdo HTML ```html |
||||||||||||||||||
|
||||||||||||||||||
## Especificações | ||||||||||||||||||
|
||||||||||||||||||
{{Specifications}} | ||||||||||||||||||
|
||||||||||||||||||
## Compatibilidade com navegadores | ||||||||||||||||||
|
||||||||||||||||||
{{Compat}} | ||||||||||||||||||
|
||||||||||||||||||
## Veja também | ||||||||||||||||||
|
||||||||||||||||||
- {{domxref("BatteryManager")}} | ||||||||||||||||||
- {{domxref("Navigator.battery")}} | ||||||||||||||||||
Comment on lines
+32
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.