Skip to content

Commit

Permalink
Revert "adjust code wrapper tags on bottom sheet read me (#5404)"
Browse files Browse the repository at this point in the history
This reverts commit dcdd925.
  • Loading branch information
codeman7 committed Oct 18, 2018
1 parent f6c357a commit d57bd27
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions components/BottomSheet/README.md
Expand Up @@ -87,11 +87,8 @@ MDCBottomSheetController *bottomSheet = [[MDCBottomSheetController alloc] initWi
[self presentViewController:bottomSheet animated:true completion:nil];
```
<!--</div>-->
Create a button that will call the code above.
<!--<div class="material-code-render" markdown="1">-->
#### Swift
```swift
let button = UIButton(frame: .zero)
Expand All @@ -102,5 +99,7 @@ button.addTarget(self, action: #selector(presentBottomSheet), for: .touchUpInsid
```objc
_button = [[UIButton alloc] initWithFrame:CGRectZero];
[_button addTarget:self action:@selector(presentBottomSheet) forControlEvents:UIControlEventTouchUpInside];

```
<!--</div>-->

0 comments on commit d57bd27

Please sign in to comment.