mirror of https://github.com/portainer/portainer
Make text next to "Display All" clickable
parent
9baa85f2e4
commit
9284e4b451
|
@ -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">
|
||||||
|
|
|
@ -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" +
|
||||||
|
|
|
@ -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" +
|
||||||
|
|
Loading…
Reference in New Issue