Skip to content

Commit

Permalink
Updating changelof
Browse files Browse the repository at this point in the history
  • Loading branch information
zmanring committed Jan 31, 2014
1 parent a894711 commit 31a1340
Show file tree
Hide file tree
Showing 3 changed files with 246 additions and 237 deletions.
8 changes: 0 additions & 8 deletions assets/javascripts/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,6 @@ YUM.openSelectedSuggestion = function(selection) {
}
};

YUM.openUpdatePage = function() {
chrome.tabs.create({
url: '/updated.html',
active: true
});
};


// Events
YUM.createContextMenu();
Expand All @@ -156,7 +149,6 @@ chrome.omnibox.onInputEntered.addListener(function(input) {
chrome.omnibox.setDefaultSuggestion({
"description": " "
});
// chrome.runtime.onInstalled.addListener(function () { YUM.openUpdatePage(); });
chrome.runtime.onMessage.addListener(function(message) {
if (message.url) {
YUM.openNewTab(message.url);
Expand Down
68 changes: 36 additions & 32 deletions popup.html
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>
Loading

0 comments on commit 31a1340

Please sign in to comment.