Skip to content

Commit

Permalink
style(CHANGELOG): Fix code blocks in breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Jun 24, 2013
1 parent 9291aaa commit 86243cb
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,32 +58,41 @@
To migrate your code, surround the text of these attributes with quotes.

Before:

<pagination first-text="<<" ...></pagination>

```
<pagination first-text="<<" ...></pagination>
```

After:

<pagination first-text="'<<'" ...></pagination>

```
<pagination first-text="'<<'" ...></pagination>
```

- **progressbar:**
The 'value' is replaced by 'percent'.

Before:

<progress value="..."></progress>

```
<progress value="..."></progress>
```

After:

<progress percent="..."></progress>

```
<progress percent="..."></progress>
```

- **tabs:**
The 'tabs' directive has been renamed to 'tabset', and
the 'pane' directive has been renamed to 'tab'.

To migrate your code, follow the example below.

Before:
Before:

```
<tabs>
<pane heading="one">
First Content
Expand All @@ -92,9 +101,11 @@
{{apple.content}}
</pane>
</tabs>
```

After:
After:

```
<tabset>
<tab heading="one">
First Content
Expand All @@ -103,6 +114,8 @@
{{apple.content}}
</tab>
</tabset>
```


# 0.3.0 (2013-04-30)

Expand Down

0 comments on commit 86243cb

Please sign in to comment.