Make text next to "Display All" clickable

pull/2/head
Janne Heß 2015-02-13 14:28:09 +01:00
parent 9baa85f2e4
commit 9284e4b451
3 changed files with 4 additions and 7 deletions

View File

@ -18,8 +18,7 @@
</ul> </ul>
<div class="pull-right"> <div class="pull-right">
<input type="checkbox" ng-model="displayAll" <input type="checkbox" ng-model="displayAll" id="displayAll" ng-change="toggleGetAll()"/> <label for="displayAll">Display All</label>
ng-change="toggleGetAll()"/> Display All
</div> </div>
</div> </div>
<table class="table table-striped"> <table class="table table-striped">

5
dist/dockerui.js vendored
View File

@ -1,4 +1,4 @@
/*! dockerui - v0.6.0 - 2015-02-09 /*! dockerui - v0.6.0 - 2015-02-13
* https://github.com/crosbymichael/dockerui * https://github.com/crosbymichael/dockerui
* Copyright (c) 2015 Michael Crosby & Kevan Ahlquist; * Copyright (c) 2015 Michael Crosby & Kevan Ahlquist;
* Licensed MIT * Licensed MIT
@ -1230,8 +1230,7 @@ angular.module("app/components/containers/containers.html", []).run(["$templateC
" </ul>\n" + " </ul>\n" +
"\n" + "\n" +
" <div class=\"pull-right\">\n" + " <div class=\"pull-right\">\n" +
" <input type=\"checkbox\" ng-model=\"displayAll\" \n" + " <input type=\"checkbox\" ng-model=\"displayAll\" id=\"displayAll\" ng-change=\"toggleGetAll()\"/> <label for=\"displayAll\">Display All</label>\n" +
" ng-change=\"toggleGetAll()\"/> Display All\n" +
" </div>\n" + " </div>\n" +
"</div>\n" + "</div>\n" +
"<table class=\"table table-striped\">\n" + "<table class=\"table table-striped\">\n" +

View File

@ -219,8 +219,7 @@ angular.module("app/components/containers/containers.html", []).run(["$templateC
" </ul>\n" + " </ul>\n" +
"\n" + "\n" +
" <div class=\"pull-right\">\n" + " <div class=\"pull-right\">\n" +
" <input type=\"checkbox\" ng-model=\"displayAll\" \n" + " <input type=\"checkbox\" ng-model=\"displayAll\" id=\"displayAll\" ng-change=\"toggleGetAll()\"/> <label for=\"displayAll\">Display All</label>\n" +
" ng-change=\"toggleGetAll()\"/> Display All\n" +
" </div>\n" + " </div>\n" +
"</div>\n" + "</div>\n" +
"<table class=\"table table-striped\">\n" + "<table class=\"table table-striped\">\n" +