Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/views/directives/deploy-image.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
select-on-focus
ng-disabled="mode !== 'dockerImage'"
placeholder="Image name or pull spec"
class="form-control">
class="form-control"
autocorrect="off"
autocapitalize="off"
spellcheck="false">
<span class="input-group-btn">
<button class="btn btn-default"
type="submit"
Expand Down
5 changes: 4 additions & 1 deletion app/views/directives/events.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
placeholder="Filter by keyword"
class="form-control"
id="events-filter"
ng-model="filter.text">
ng-model="filter.text"
autocorrect="off"
autocapitalize="off"
spellcheck="false">
<button
type="button"
class="clear"
Expand Down
5 changes: 4 additions & 1 deletion app/views/membership.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,10 @@ <h3>
type="text"
class="form-control input-name"
placeholder="Name"
ng-model="newBinding.name">
ng-model="newBinding.name"
autocorrect="off"
autocapitalize="off"
spellcheck="false">
<div
ng-if="newBinding.kind === 'ServiceAccount'"
class="service-account-namespace hidden-sm hidden-md hidden-lg"
Expand Down
9 changes: 6 additions & 3 deletions app/views/monitoring.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@ <h1>
<form role="form" class="search-pf has-button">
<div class="form-group filter-controls has-clear">
<div class="search-pf-input-group">
<label for="events-filter" class="sr-only">Filter by name</label>
<label for="name-filter" class="sr-only">Filter by name</label>
<input type="search"
placeholder="Filter by name"
class="form-control"
id="events-filter"
ng-model="filters.text">
id="name-filter"
ng-model="filters.text"
autocorrect="off"
autocapitalize="off"
spellcheck="false">
<button
type="button"
class="clear"
Expand Down
10 changes: 5 additions & 5 deletions dist/scripts/templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -6508,7 +6508,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"<div class=\"form-group\">\n" +
"<label for=\"imageName\" class=\"sr-only\">Image name or pull spec</label>\n" +
"<div class=\"input-group\">\n" +
"<input type=\"search\" id=\"imageName\" ng-model=\"imageName\" required select-on-focus ng-disabled=\"mode !== 'dockerImage'\" placeholder=\"Image name or pull spec\" class=\"form-control\">\n" +
"<input type=\"search\" id=\"imageName\" ng-model=\"imageName\" required select-on-focus ng-disabled=\"mode !== 'dockerImage'\" placeholder=\"Image name or pull spec\" class=\"form-control\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\">\n" +
"<span class=\"input-group-btn\">\n" +
"<button class=\"btn btn-default\" type=\"submit\" ng-disabled=\"!imageName\" ng-click=\"findImage()\">\n" +
"<i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n" +
Expand Down Expand Up @@ -7110,7 +7110,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"<div class=\"form-group filter-controls has-clear\">\n" +
"<div class=\"search-pf-input-group\">\n" +
"<label for=\"events-filter\" class=\"sr-only\">Filter</label>\n" +
"<input type=\"search\" placeholder=\"Filter by keyword\" class=\"form-control\" id=\"events-filter\" ng-model=\"filter.text\">\n" +
"<input type=\"search\" placeholder=\"Filter by keyword\" class=\"form-control\" id=\"events-filter\" ng-model=\"filter.text\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\">\n" +
"<button type=\"button\" class=\"clear\" aria-hidden=\"true\" ng-if=\"filter.text\" ng-click=\"filter.text = ''\">\n" +
"<span class=\"pficon pficon-close\"></span>\n" +
"</button>\n" +
Expand Down Expand Up @@ -10325,7 +10325,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"<label ng-attr-for=\"newBindingName\" class=\"sr-only\">\n" +
"Name\n" +
"</label>\n" +
"<input type=\"text\" class=\"form-control input-name\" placeholder=\"Name\" ng-model=\"newBinding.name\">\n" +
"<input type=\"text\" class=\"form-control input-name\" placeholder=\"Name\" ng-model=\"newBinding.name\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\">\n" +
"<div ng-if=\"newBinding.kind === 'ServiceAccount'\" class=\"service-account-namespace hidden-sm hidden-md hidden-lg\" aria-hidden=\"true\">\n" +
"<ui-select ng-model=\"newBinding.namespace\" theme=\"bootstrap\" search-enabled=\"true\" title=\"Select a project\" class=\"select-role\">\n" +
"<ui-select-match placeholder=\"Select a project\">\n" +
Expand Down Expand Up @@ -10769,8 +10769,8 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"<form role=\"form\" class=\"search-pf has-button\">\n" +
"<div class=\"form-group filter-controls has-clear\">\n" +
"<div class=\"search-pf-input-group\">\n" +
"<label for=\"events-filter\" class=\"sr-only\">Filter by name</label>\n" +
"<input type=\"search\" placeholder=\"Filter by name\" class=\"form-control\" id=\"events-filter\" ng-model=\"filters.text\">\n" +
"<label for=\"name-filter\" class=\"sr-only\">Filter by name</label>\n" +
"<input type=\"search\" placeholder=\"Filter by name\" class=\"form-control\" id=\"name-filter\" ng-model=\"filters.text\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\">\n" +
"<button type=\"button\" class=\"clear\" aria-hidden=\"true\" ng-if=\"filters.text\" ng-click=\"filters.text = ''\">\n" +
"<span class=\"pficon pficon-close\"></span>\n" +
"</button>\n" +
Expand Down