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

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: Addressing issues raised during CR 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({ resultsToLoad: c.RESULTS_FAILURES }) } }">Failures</a></li>
10 <li><a href="#/view?{{ qStr({ resultsToLoad: c.RESULTS_ALL }) }}">Al l</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) }}">
17 {{oneSKP.title}}
18 </a>
19 </li>
20 </ul>
21 </div>
22 </div>
OLDNEW
« no previous file with comments | « gm/rebaseline_server/static/new/new-index.html ('k') | gm/rebaseline_server/static/new/partials/rebaseline-view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698