Skip to content

Commit

Permalink
change tabbing; move dependency to devDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Swen Wenzel committed Jan 25, 2015
1 parent ae193ca commit d118d95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"angular-route": "1.3.x",
"angular-sanitize": "1.3.x",
"angular-bootstrap": "0.12.x",
"angular-unicorn-directive": "~0.0.2",
"angular-utf8-base64": "0.0.x",
"restangular": "1.4.x"
},
Expand All @@ -24,8 +25,5 @@
],
"resolutions": {
"angular": "1.3.x"
},
"dependencies": {
"angular-unicorn-directive": "~0.0.2"
}
}
6 changes: 3 additions & 3 deletions src/partials/401.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Authorization error</h1>
<hr>

<div class="row">
<div class="col-md-4" ng-show="!user||demo">
<div class="col-md-4" ng-show="!user.loggedin">
<h2>Fix this: Login!</h2>
<loginform>
</div>
Expand All @@ -21,15 +21,15 @@ <h2>Public routes</h2>
<li><a href="help/">/help</a></li>
</ul>
</div>
<div class="col-md-4" ng-show="user">
<div class="col-md-4" ng-show="user.loggedin">
<h2>Your routes</h2>
<ul>
<li><a href="~">/~</a></li>
<li><a href="~/settings">/~/settings</a></li>
<li><a href="~/logout">/~/logout</a></li>
</ul>
</div>
<div class="col-md-4" ng-show="user&&user.rank>=16">
<div class="col-md-4" ng-show="user.rank>=16">
<h2>Admin routes</h2>
<ul>
<li><a href="admin">/admin</a></li>
Expand Down

0 comments on commit d118d95

Please sign in to comment.