Skip to content
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

update doc to ButtonRadioDirective and ButtonCheckboxDirective #476

Merged
merged 1 commit into from
May 6, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions components/buttons/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
```typescript
import {BUTTON_DIRECTIVES} from 'ng2-bootstrap/ng2-bootstrap';
// or
import { ButtonRadioComponent, ButtonCheckboxComponent } from 'ng2-bootstrap/ng2-bootstrap';
import { ButtonRadioDirective, ButtonCheckboxDirective } from 'ng2-bootstrap/ng2-bootstrap';
```
### Annotations
```typescript
// component ButtonRadio
// directive ButtonRadio
@Directive({ selector: '[btnRadio][ngModel]' })
export class ButtonRadioComponent implements ControlValueAccessor, OnInit {
export class ButtonRadioDirective implements ControlValueAccessor, OnInit {
@Input() public btnRadio:string;
@Input() public uncheckable:boolean;

Expand All @@ -18,9 +18,9 @@ export class ButtonRadioComponent implements ControlValueAccessor, OnInit {
@HostListener('click')
private onClick() {}
}
// component ButtonCheckbox
// directive ButtonCheckbox
@Directive({ selector: '[btnCheckbox][ngModel]' })
export class ButtonCheckboxComponent implements ControlValueAccessor, OnInit {
export class ButtonCheckboxDirective implements ControlValueAccessor, OnInit {
@Input() private btnCheckboxTrue:any;
@Input() private btnCheckboxFalse:any;

Expand Down