Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

replaced bootstrap 2 with bootstrap 3 classes #7433

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions docs/content/tutorial/step_07.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ line containing a div with the `ng-view` attribute. The code that we removed was
__`app/partials/phone-list.html`:__

```html
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<div class="container">
<div class="row">
<div class="col-md-2">
<!--Sidebar content-->

Search: <input ng-model="query">
Expand All @@ -159,7 +159,7 @@ __`app/partials/phone-list.html`:__
</select>

</div>
<div class="span10">
<div class="col-md-10">
<!--Body content-->

<ul class="phones">
Expand Down