mirror of https://github.com/portainer/portainer
Make text next to "Display All" clickable
parent
9baa85f2e4
commit
9284e4b451
|
@ -18,8 +18,7 @@
|
|||
</ul>
|
||||
|
||||
<div class="pull-right">
|
||||
<input type="checkbox" ng-model="displayAll"
|
||||
ng-change="toggleGetAll()"/> Display All
|
||||
<input type="checkbox" ng-model="displayAll" id="displayAll" ng-change="toggleGetAll()"/> <label for="displayAll">Display All</label>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table table-striped">
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/*! dockerui - v0.6.0 - 2015-02-09
|
||||
/*! dockerui - v0.6.0 - 2015-02-13
|
||||
* https://github.com/crosbymichael/dockerui
|
||||
* Copyright (c) 2015 Michael Crosby & Kevan Ahlquist;
|
||||
* Licensed MIT
|
||||
|
@ -1230,8 +1230,7 @@ angular.module("app/components/containers/containers.html", []).run(["$templateC
|
|||
" </ul>\n" +
|
||||
"\n" +
|
||||
" <div class=\"pull-right\">\n" +
|
||||
" <input type=\"checkbox\" ng-model=\"displayAll\" \n" +
|
||||
" ng-change=\"toggleGetAll()\"/> Display All\n" +
|
||||
" <input type=\"checkbox\" ng-model=\"displayAll\" id=\"displayAll\" ng-change=\"toggleGetAll()\"/> <label for=\"displayAll\">Display All</label>\n" +
|
||||
" </div>\n" +
|
||||
"</div>\n" +
|
||||
"<table class=\"table table-striped\">\n" +
|
||||
|
|
|
@ -219,8 +219,7 @@ angular.module("app/components/containers/containers.html", []).run(["$templateC
|
|||
" </ul>\n" +
|
||||
"\n" +
|
||||
" <div class=\"pull-right\">\n" +
|
||||
" <input type=\"checkbox\" ng-model=\"displayAll\" \n" +
|
||||
" ng-change=\"toggleGetAll()\"/> Display All\n" +
|
||||
" <input type=\"checkbox\" ng-model=\"displayAll\" id=\"displayAll\" ng-change=\"toggleGetAll()\"/> <label for=\"displayAll\">Display All</label>\n" +
|
||||
" </div>\n" +
|
||||
"</div>\n" +
|
||||
"<table class=\"table table-striped\">\n" +
|
||||
|
|
Loading…
Reference in New Issue