Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit e420204

Browse files
Aaron Mendezpkozlowski-opensource
Aaron Mendez
authored andcommitted
docs(CHANGELOG): fix code snippets
A few snippets were not wrapped in code blocks. Closes #2245
1 parent cdbfac4 commit e420204

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

Diff for: CHANGELOG.md

+24-12
Original file line numberDiff line numberDiff line change
@@ -123,41 +123,53 @@
123123
* `on-select-page` is removed since `ng-change` can now be used.
124124

125125
Before:
126-
126+
127+
```html
127128
<pagination page="current" on-select-page="changed(page)" ...></pagination>
128-
129+
```
130+
129131
After:
130132

133+
```html
131134
<pagination ng-model="current" ng-change="changed()" ...></pagination>
132-
135+
```
136+
133137
- **rating:**
134138
`rating` is now integrated with `ngModelController`.
135139
* `value` is replaced from `ng-model`.
136140

137141
Before:
138142

143+
```html
139144
<rating value="rate" ...></rating>
140-
145+
```
146+
141147
After:
142-
148+
149+
```html
143150
<rating ng-model="rate" ...></rating>
144-
151+
```
152+
145153
- **tabs:**
146154

147155
Use interpolation for type attribute.
148156

149157
Before:
150-
158+
159+
```html
151160
<tabset type="'pills'" ...></tabset >
152-
or
161+
<!-- or -->
153162
<tabset type="navtype" ...></tabset>
154-
163+
```
164+
155165
After:
156-
166+
167+
```html
157168
<tabset type="pills" ...></tabset>
158-
or
169+
<!-- or -->
159170
<tabset type="{{navtype}}" ...></tabset>
160-
171+
```
172+
161173
# 0.10.0 (2014-01-13)
162174

163175
_This release adds AngularJS 1.2 support_

0 commit comments

Comments
 (0)