Skip to content

Commit

Permalink
Merge pull request #8954 from electron/mark-touchbar-apis-with-experi…
Browse files Browse the repository at this point in the history
…mental-label

Mark touch bar apis with _Experimental_ in docs
  • Loading branch information
kevinsawicki committed Mar 17, 2017
2 parents 64984ac + 6f047fd commit a215e8f
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/api/browser-window.md
Expand Up @@ -1267,7 +1267,7 @@ Controls whether to hide cursor when typing.
Adds a vibrancy effect to the browser window. Passing `null` or an empty string
will remove the vibrancy effect on the window.

#### `win.setTouchBar(touchBar)` _macOS_
#### `win.setTouchBar(touchBar)` _macOS_ _Experimental_

* `touchBar` TouchBar

Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-button.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarButton(options)`
### `new TouchBarButton(options)` _Experimental_

* `options` Object
* `label` String (optional) - Button text.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-color-picker.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarColorPicker(options)`
### `new TouchBarColorPicker(options)` _Experimental_

* `options` Object
* `availableColors` String[] (optional) - Array of hex color strings to
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-group.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarGroup(options)`
### `new TouchBarGroup(options)` _Experimental_

* `options` Object
* `items` [TouchBar](touch-bar.md) - Items to display as a group.
2 changes: 1 addition & 1 deletion docs/api/touch-bar-label.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarLabel(options)`
### `new TouchBarLabel(options)` _Experimental_

* `options` Object
* `label` String (optional) - Text to display.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-popover.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarPopover(options)`
### `new TouchBarPopover(options)` _Experimental_

* `options` Object
* `label` String (optional) - Popover button text.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-scrubber.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarScrubber(options)`
### `new TouchBarScrubber(options)` _Experimental_

* `options` Object
* `items` [ScrubberItem[]](structures/scrubber-item.md) - An array of items to place in this scrubber
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-segmented-control.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarSegmentedControl(options)`
### `new TouchBarSegmentedControl(options)` _Experimental_

* `options` Object
* `segmentStyle` String - (Optional) Style of the segments:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-slider.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarSlider(options)`
### `new TouchBarSlider(options)` _Experimental_

* `options` Object
* `label` String (optional) - Label text.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar-spacer.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBarSpacer(options)`
### `new TouchBarSpacer(options)` _Experimental_

* `options` Object
* `size` String (optional) - Size of spacer, possible values are:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/touch-bar.md
Expand Up @@ -4,7 +4,7 @@
Process: [Main](../tutorial/quick-start.md#main-process)

### `new TouchBar(items)`
### `new TouchBar(items)` _Experimental_

* `items` ([TouchBarButton](touch-bar-button.md) | [TouchBarColorPicker](touch-bar-color-picker.md) | [TouchBarGroup](touch-bar-group.md) | [TouchBarLabel](touch-bar-label.md) | [TouchBarPopover](touch-bar-popover.md) | [TouchBarSlider](touch-bar-slider.md) | [TouchBarSpacer](touch-bar-spacer.md))[]

Expand Down

0 comments on commit a215e8f

Please sign in to comment.