pxt-microbit Accessibility PR (#529)

* Accessibility changes
This commit is contained in:
Sam El-Husseini
2017-09-07 13:42:08 -07:00
committed by GitHub
parent 3f87576a50
commit e3975e65e5
357 changed files with 1641 additions and 3540 deletions

View File

@ -4,17 +4,17 @@ The clear function for images.
Turn off all the pixels in an [Image](/reference/images/image).
### JavaScript
## JavaScript
```sig
export function clear(img: micro_bit.Image)
```
### Parameters
## Parameters
* none
### Example
## Example
The following example turns off the pixels of `img` when the A input button is pressed:
@ -33,7 +33,7 @@ input.onButtonPressed(Button.A, () => {
})
```
### See also
## See also
[Image](/reference/images/image), [show animation](/reference/basic/show-animation), [show image](/reference/images/show-image), [scroll image](/reference/images/scroll-image), [create image](/reference/images/create-image)