Skip to content

Commit 8dba9ce

Browse files
author
Erik Mellum
committed
Fixed semicolon
1 parent ffaa3e7 commit 8dba9ce

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var app = angular.module('myApp', ['ui.router'])
2525
}
2626
}
2727
};
28-
});
28+
})
2929
.directive('ngEnter', function() {
3030
return function(scope, element, attrs) {
3131
element.bind("keydown keypress", function(event) {

js/listController.js

Whitespace-only changes.

templates/header.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<nav class="top-bar" data-topbar role="navigation">
2+
<ul class="title-area">
3+
<li class="name">
4+
<h1><a ui-sref="login">Login</a></h1>
5+
</li>
6+
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
7+
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
8+
</ul>
9+
10+
<section class="top-bar-section">
11+
<!-- Right Nav Section -->
12+
<ul class="right">
13+
<li class="active"><a href="#">Right Button Active</a></li>
14+
<li class="has-dropdown">
15+
<a href="#">Right Button Dropdown</a>
16+
<ul class="dropdown">
17+
<li><a href="#">First link in dropdown</a></li>
18+
<li class="active"><a href="#">Active link in dropdown</a></li>
19+
</ul>
20+
</li>
21+
</ul>
22+
23+
<!-- Left Nav Section -->
24+
<ul class="left">
25+
<li><a ui-sref="todo">Todo</a></li>
26+
</ul>
27+
</section>
28+
</nav>

0 commit comments

Comments
 (0)