Skip to content

Commit

Permalink
Merge pull request #1137 from matuzalemsteles/ISSUE-1128
Browse files Browse the repository at this point in the history
Fix the names of Navbar for Navigation Bar in snippets | Fixes #1128
  • Loading branch information
carloslancha authored Aug 31, 2018
2 parents 65f1f61 + ed1e178 commit fc1ccb5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions clayui.com/content/docs/components/navigation/navbar.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ A navigation bar, navbar, is an horizontal bar that provides several access poin
</nav>

```soy
{call ClayNavbar.render}
{call ClayNavigationBar.render}
{param items: [
[
'title': 'App Section 1',
Expand Down Expand Up @@ -97,7 +97,7 @@ A navigation bar, navbar, is an horizontal bar that provides several access poin
{/call}
```
```html
<clay-navbar
<clay-navigation-bar
items='[
{"title": "App Section 1", "url": "#1"},
{"title": "App Section 2", "url": "#1"},
Expand All @@ -108,7 +108,7 @@ A navigation bar, navbar, is an horizontal bar that provides several access poin
{"title": "App Section 7", "url": "#1"}
]'
spritemap="/images/icons/icons.svg">
</clay-navbar>
</clay-navigation-bar>
```
```html
<nav class="navbar navbar-collapse-absolute navbar-expand-md navbar-underline navigation-bar navigation-bar-light">
Expand Down Expand Up @@ -213,7 +213,7 @@ A navigation bar, navbar, is an horizontal bar that provides several access poin
</nav>

```soy
{call ClayNavbar.render}
{call ClayNavigationBar.render}
{param inverted: true /}
{param items: [
[
Expand Down Expand Up @@ -250,7 +250,7 @@ A navigation bar, navbar, is an horizontal bar that provides several access poin
{/call}
```
```html
<clay-navbar
<clay-navigation-bar
inverted="true"
items='[
{"title": "App Section 1", "url": "#1"},
Expand All @@ -262,7 +262,7 @@ A navigation bar, navbar, is an horizontal bar that provides several access poin
{"title": "App Section 7", "url": "#1"}
]'
spritemap="/images/icons/icons.svg">
</clay-navbar>
</clay-navigation-bar>
```
```html
<nav class="navbar navbar-collapse-absolute navbar-expand-md navbar-underline navigation-bar navigation-bar-secondary">
Expand Down

0 comments on commit fc1ccb5

Please sign in to comment.