forked from zmanring-zz/chrome-ext-delicious
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
246 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,41 @@ | ||
<!doctype html> | ||
<html ng-csp="" ng-app="yum"> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="/vendor/stylesheets/animate.css"/> | ||
<link rel="stylesheet" type="text/css" href="/vendor/stylesheets/select2-3.3.1.css"/> | ||
<link rel="stylesheet" type="text/css" href="/assets/stylesheets/popup.css"/> | ||
</head> | ||
<body> | ||
<section id="content" ng-controller="AppCtrl"> | ||
<nav ng-show="loggedIn"> | ||
<ul> | ||
<li ng-repeat="item in menu"> | ||
<a class="button" ng-href="#{{item.path}}" ng-class="{selected: isSelected(item)}"> | ||
|
||
<head> | ||
<link rel="stylesheet" type="text/css" href="/vendor/stylesheets/animate.css" /> | ||
<link rel="stylesheet" type="text/css" href="/vendor/stylesheets/select2-3.3.1.css" /> | ||
<link rel="stylesheet" type="text/css" href="/assets/stylesheets/popup.css" /> | ||
</head> | ||
|
||
<body> | ||
<section id="content" ng-controller="AppCtrl"> | ||
<nav ng-show="loggedIn"> | ||
<ul> | ||
<li ng-repeat="item in menu"> | ||
<a class="button" ng-href="#{{item.path}}" ng-class="{selected: isSelected(item)}"> | ||
{{item.text}} | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
<div class="view-container" ng-view ng-animate="{enter: 'view-enter'}"></div> | ||
<footer> | ||
<p> | ||
<span>{{extVersion()}}</span> | ||
| <a title="Edit your options" ng-href="#/options" href="#/options">Options</a> | ||
| <a target="_blank" title="Follow @DeliciousExt on Twitter" href="https://twitter.com/DeliciousExt">Follow</a> | ||
| <a target="_blank" title="Delicious.com" ng-href="https://delicious.com/{{username()}}">Delicious.com</a> | ||
<span ng-show="loggedIn">| <a href="" ng-click="logout()">Logout</a></span> | ||
</p> | ||
</footer> | ||
</section> | ||
<script src="https://ssl.google-analytics.com/ga.js"></script> | ||
<script src="/vendor/javascripts/xmlToJson.min.js"></script> | ||
<script src="/vendor/javascripts/jquery-2.0.0.min.js"></script> | ||
<script src="/vendor/javascripts/select2.min.js"></script> | ||
<script src="/vendor/javascripts/angular.min.js"></script> | ||
<script src="/assets/javascripts/popup.js"></script> | ||
</body> | ||
</li> | ||
</ul> | ||
</nav> | ||
<div class="view-container" ng-view ng-animate="{enter: 'view-enter'}"></div> | ||
<footer> | ||
<p> | ||
<a target="_blank" title="View changelog" href="updated.html">{{extVersion()}}</a> | ||
| <a title="Edit your options" ng-href="#/options" href="#/options">Options</a> | ||
| <a target="_blank" title="Follow @DeliciousExt on Twitter" href="https://twitter.com/DeliciousExt">Follow</a> | ||
| <a target="_blank" title="Delicious.com" ng-href="https://delicious.com/{{username()}}">Delicious.com</a> | ||
<span ng-show="loggedIn">| <a href="" ng-click="logout()">Logout</a> | ||
</span> | ||
</p> | ||
</footer> | ||
</section> | ||
<script src="https://ssl.google-analytics.com/ga.js"></script> | ||
<script src="/vendor/javascripts/xmlToJson.min.js"></script> | ||
<script src="/vendor/javascripts/jquery-2.0.0.min.js"></script> | ||
<script src="/vendor/javascripts/select2.min.js"></script> | ||
<script src="/vendor/javascripts/angular.min.js"></script> | ||
<script src="/assets/javascripts/popup.js"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.