Skip to content

Commit

Permalink
bug 1069389 - bootstrap had bad font paths. fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cameron Dawson committed Sep 26, 2014
1 parent b9c97b9 commit 70924ab
Show file tree
Hide file tree
Showing 13 changed files with 835 additions and 716 deletions.
Empty file modified ui/css/bootstrap-theme.css 100644 → 100755
Empty file.
Empty file modified ui/css/bootstrap-theme.min.css 100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions ui/css/bootstrap.css 100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/css/bootstrap.min.css 100644 → 100755

Large diffs are not rendered by default.

Binary file modified ui/fonts/glyphicons-halflings-regular.eot
Binary file not shown.
401 changes: 201 additions & 200 deletions ui/fonts/glyphicons-halflings-regular.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ui/fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file modified ui/fonts/glyphicons-halflings-regular.woff
Binary file not shown.
2 changes: 1 addition & 1 deletion ui/js/directives/resultsets.js
Expand Up @@ -51,7 +51,7 @@ treeherder.directive('thResultCounts', [

var setTotalCount = function() {
if (scope.resultset.job_counts) {
$(element).find('.result-status-total-count').html(
$(element).find('.result-status-total-value').html(
scope.resultset.job_counts.total - scope.totalExcluded()
);
}
Expand Down
6 changes: 3 additions & 3 deletions ui/partials/main/jobs.html
Expand Up @@ -45,7 +45,7 @@
<div><b>Unknown revision ID.</b></div>
<span>This could be because your push has not been processed yet, or the revision ID could be invalid.
This page will refresh occasionally, so your push should show up within a few minutes if it does exist.</span>
<span>
</span>
</div>

<div ng-show="result_sets.length == 0 && !isLoadingRsBatch.appending && !isLoadingJobs &&
Expand All @@ -54,7 +54,7 @@
<div><b>No resultsets found.</b></div>
<span>No commit information could be loaded for this repository.
More information about this repository can be found <a href="{{currentRepo.url}}">here</a>.</span>
<span>
</span>
</div>

<div ng-show="result_sets.length == 0 && !isLoadingRsBatch.appending && !isLoadingJobs &&
Expand All @@ -66,7 +66,7 @@
<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=Tree%20Management&component=Treeherder">
file a bug against the Treeherder product in Bugzilla</a> to get it added to the system.
</span>
<span>
</span>
</div>

<!-- END Revision clone target -->
Expand Down
5 changes: 4 additions & 1 deletion ui/partials/main/thResultCounts.html
@@ -1,7 +1,10 @@
<span class="btn btn-default btn-sm result-status-total-count"
tabindex="0" role="button"
ng-click="toggleJobs()"
title="total job count - toggle jobs"><i class="fa fa-list fa-lg"></i></span>
title="total job count - toggle jobs">
<i class="fa fa-list fa-lg"></i>
<span class="result-status-total-value"></span>
</span>
<span class="result-status-count-group">
<th-result-status-count ng-repeat="resultStatus in statusList"/>
</span>

0 comments on commit 70924ab

Please sign in to comment.