forked from bountysource/core
-
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
1 parent
84d14b5
commit 1964755
Showing
27 changed files
with
342 additions
and
256 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
'use strict'; | ||
|
||
angular.module('app'). | ||
directive('teamTrackerThumbnails', function() { | ||
return { | ||
restrict: "E", | ||
template: '<ul class="thumbnails team-tracker-thumbnails"><li ng-repeat="tracker in trackers" class="span2"><a class="thumbnail text-center" ng-href="/trackers/{{tracker.slug}}"><img ng-src="{{tracker.medium_image_url}}"/><span>{{tracker.name}}</span></a></li></ul>', | ||
scope: { | ||
trackers: "=" | ||
} | ||
}; | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<div class="well"> | ||
<h4>Add a Project</h4> | ||
<p>Add a fucking project</p> | ||
|
||
<form class="form-horizontal" style="margin: 30px 0 0 0;"> | ||
<div class="control-group"> | ||
<label class="control-label" style="width:inherit">URL:</label> | ||
|
||
<div class="controls" style="margin-left:70px"> | ||
<input ng-model="search_query" type="text" class="span12" placeholder="https://github.com/.../issues/123" /> | ||
</div> | ||
</div> | ||
|
||
<div class="control-group"> | ||
<label class="control-label" style="width:inherit">Amount:</label> | ||
|
||
<div class="controls" style="margin-left:70px"> | ||
<div class="input-prepend"> | ||
<span class="add-on">$</span> | ||
<input ng-model="bounty_amount" type="number" class="span6" placeholder="30.00" /> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="control-group"> | ||
<div class="controls" style="margin-left:70px;"> | ||
<button ng-click="submit_search(search_query, bounty_amount)" class="btn btn-primary">Post Bounty | ||
</button> | ||
</div> | ||
</div> | ||
</form> | ||
</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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<div class="well"> | ||
<h4>Post a Bounty</h4> | ||
<p>Paste the URL to an issue and enter an amount.</p> | ||
|
||
<form class="form-horizontal" style="margin: 30px 0 0 0;"> | ||
<div class="control-group"> | ||
<label class="control-label" style="width:inherit">URL:</label> | ||
|
||
<div class="controls" style="margin-left:70px"> | ||
<input ng-model="search_query" type="text" class="span12" placeholder="https://github.com/.../issues/123" /> | ||
</div> | ||
</div> | ||
|
||
<div class="control-group"> | ||
<label class="control-label" style="width:inherit">Amount:</label> | ||
|
||
<div class="controls" style="margin-left:70px"> | ||
<div class="input-prepend"> | ||
<span class="add-on">$</span> | ||
<input ng-model="bounty_amount" type="number" class="span6" placeholder="30.00" /> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="control-group"> | ||
<div class="controls" style="margin-left:70px;"> | ||
<button ng-click="submit_search(search_query, bounty_amount)" class="btn btn-primary">Post Bounty | ||
</button> | ||
</div> | ||
</div> | ||
</form> | ||
</div> |
Oops, something went wrong.