Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: gm/rebaseline_server/static/new/partials/index-view.html

Issue 538613002: Refactored frontend for the rebaseline server. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed typos and small issues Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <div class="container-fluid ng-cloak" ng-cloak>
2 <div class="row" ng-show="state === c.ST_LOADING">
3 <h4>Loading ...</h4>
4 </div>
5
6 <div class="row" ng-show="state === c.ST_READY">
7 <h4>GM Expectations vs Actuals:</h4>
8 <ul>
9 <li><a href="#/view?{{ qStr({ target: c.TARGET_GM, resultsToLoad: c. RESULTS_FAILURES }) }}">Failures</a></li>
10 <li><a href="#/view?{{ qStr({ target: c.TARGET_GM, resultsToLoad: c. RESULTS_ALL }) }}">All</a></li>
11 </ul>
12
13 <h4>Rendered SKPs:</h4>
14 <ul>
15 <li ng-repeat="oneSKP in allSKPs">
16 <a href="#/view?{{ qStr(oneSKP.params, { target: c.TARGET_SKP }) }}">
17 {{oneSKP.title}}
18 </a>
19 </li>
20 </ul>
21 </div>
22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698