diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-13 09:35:27 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-13 09:35:27 +0100 |
commit | 22cb83183828c7a4828c54e9b30597d276cfd73f (patch) | |
tree | b12bf07c920951bc17cb74758f2e0dcb99f04f5d /src/main/resources/webapp/apps/frontPageApp/person.html | |
parent | 7869a849164dd8431a1326385c33af5d397b9789 (diff) | |
download | esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.tar.gz esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.tar.bz2 esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.tar.xz esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.zip |
o Implemented "build" view.
o Created a better 'dogtag' directive, should be more reusable.
Diffstat (limited to 'src/main/resources/webapp/apps/frontPageApp/person.html')
-rwxr-xr-x | src/main/resources/webapp/apps/frontPageApp/person.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/person.html b/src/main/resources/webapp/apps/frontPageApp/person.html index a2e522d..189523c 100755 --- a/src/main/resources/webapp/apps/frontPageApp/person.html +++ b/src/main/resources/webapp/apps/frontPageApp/person.html @@ -50,7 +50,7 @@ <tr ng-repeat="build in recentBuilds" class="{{{true: 'success', false: 'error'}[build.success]}}"> <td>{{build.timestamp | date:'medium'}}</td> <td>{{{true: 'Success', false: 'Failure'}[build.success]}}</td> - <td><a href="/build/{{build.uuid}}">Details</a></td> + <td><a href="#/build/{{build.uuid}}">Details</a></td> </tr> </tbody> </table> @@ -71,7 +71,7 @@ <td>{{build.timestamp | date:'medium'}}</td> <td>{{build.success}}</td> <td> - <a class="btn btn-small" href="/build/{{build.uuid}}"><i class="icon-chevron-right"></i></a> + <a class="btn btn-small" href="#/build/{{build.uuid}}"><i class="icon-chevron-right"></i></a> </td> </tr> </tbody> |