-
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
6 changed files
with
82 additions
and
60 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
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
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,16 +1,18 @@ | ||
<div ng-repeat="tag in mytags"> | ||
<div class="col-xs-2"> | ||
<div class="panel panel-default"> | ||
<div class="panel-heading">{{tag}}</div> | ||
<div class="panel-body"> | ||
<table class="table" ng-controller="getLinksCtrl" ng-init="{{tag}}"> | ||
<tr ng-repeat="link in links | filter:search"> | ||
<td title="{{link.d}}"> | ||
<a href="{{link.u}}"><img src="http://g.etfv.co/{{link.u}}" />{{link.d}}</a> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
<div ng-controller="dashboardCtrl"> | ||
<div ng-repeat="thistag in mytags"> | ||
<div class="col-xs-2"> | ||
<div class="panel panel-default panel-narrow"> | ||
<div class="panel-heading">{{thistag}}</div> | ||
<div class="panel-body panel-narrow-body" ng-style="{height: columnheight}"> | ||
<table class="table" ng-controller="getLinksCtrl" ng-init="thistag"> | ||
<tr ng-repeat="link in links | filter:search"> | ||
<td title="{{link.d}}"> | ||
<a href="{{link.u}}"><img src="http://g.etfv.co/{{link.u}}" />{{link.d}}</a> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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,23 +1,32 @@ | ||
<div ng-controller="settingsCtrl"> | ||
<div style="width:70%;margin:auto"> | ||
<h2>Settings</h2> | ||
<form novalidate class="simple-form"> | ||
<div class="input-group"> | ||
<span class="input-group-addon">Username</span> | ||
<input type="text" class="username form-control" ng-model="$storage.username" placeholder="Input your Delicious Username"> | ||
</div> | ||
<br> | ||
<div class="input-group"> | ||
<span class="input-group-addon">Private Key</span> | ||
<input type="text" class="privatekey form-control" ng-model="$storage.privatekey" placeholder="Input your Delicious private key to see private links too."> | ||
</div> | ||
<br> | ||
<div class="input-group"> | ||
<span class="input-group-addon">Favorite Tags</span> | ||
<input type="text" class="privatekey form-control" ng-model="$storage.favoritetags" placeholder="Input your favorite tags, comma separated, 11 max."> | ||
</div> | ||
|
||
<div class="input-group"> | ||
<span class="input-group-addon">Username</span> | ||
<input type="text" class="username form-control" ng-model="$storage.username" placeholder="Input your Delicious Username"> | ||
</div> | ||
<br> | ||
<div class="input-group"> | ||
<span class="input-group-addon">Private API Key</span> | ||
<input type="text" class="privatekey form-control" ng-model="$storage.privatekey" placeholder="(Optional) Input your Delicious private key to see private links too."> | ||
</div> | ||
<br> | ||
<div class="input-group"> | ||
<span class="input-group-addon">Favorite Tags</span> | ||
<input type="text" class="privatekey form-control" ng-model="$storage.favoritetags" placeholder="Input your favorite tags, comma separated, 11 max."> | ||
</div> | ||
</form> | ||
<p> | ||
<a href="#/" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span> Back</a> | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
<p>Enter up to 12 favorite tags, separated by commas. 'latest' will give you your latest links.</p> | ||
<p>Enter your Delicious API key to get your private links as well. For your API key, go to http://feeds.delicious.com/[your username] and click on "RSS: Private" on the right side. This link includes your API key.</p> | ||
</div> | ||
</div> | ||
</p> | ||
<p> | ||
<a href="#/" class="btn btn-primary" ng-click="updatetags()"><span class="glyphicon glyphicon-arrow-left"></span> Back</a> | ||
</p> | ||
</div> | ||
</div> |