Remove focus directive on all fields

pull/5753/head
Oliver Günther 7 years ago
parent 308eb555ea
commit 71ca13b5ea
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 3
      frontend/app/components/work-packages/work-package-comment/work-package-comment.directive.html
  2. 2
      frontend/app/components/wp-edit/field-types/wp-edit-boolean-field.directive.html
  3. 2
      frontend/app/components/wp-edit/field-types/wp-edit-date-field.directive.html
  4. 2
      frontend/app/components/wp-edit/field-types/wp-edit-duration-field.directive.html
  5. 2
      frontend/app/components/wp-edit/field-types/wp-edit-float-field.directive.html
  6. 2
      frontend/app/components/wp-edit/field-types/wp-edit-integer-field.directive.html
  7. 4
      frontend/app/components/wp-edit/field-types/wp-edit-multi-select-field.directive.html
  8. 2
      frontend/app/components/wp-edit/field-types/wp-edit-select-field.directive.html
  9. 3
      frontend/app/components/wp-edit/field-types/wp-edit-text-field.directive.html
  10. 2
      frontend/app/components/wp-edit/field-types/wp-edit-wiki-textarea-field.directive.html

@ -23,8 +23,7 @@
span-class="inplace-editing--container wp-edit-field--display-field"
link-class="inplace-editing--trigger-link"
link-aria-label="{{ ::vm.text.editTitle }}"
execute="vm.activate()"
focus="vm.shouldFocus()">
execute="vm.activate()">
<span class="inplace-edit--read-value -default">
<span ng-bind="::vm.text.placeholder"></span>
</span>

@ -7,6 +7,4 @@
ng-focus="vm.handleUserFocus()"
ng-blur="vm.handleUserBlur()"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}" />

@ -11,8 +11,6 @@
ng-keydown="vm.handleUserSubmitOnEnter($event)"
ng-required="vm.field.required"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}" />
</op-date-picker>

@ -8,6 +8,4 @@
ng-blur="vm.handleUserBlur()"
ng-keydown="vm.handleUserSubmitOnEnter($event)"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}" />

@ -8,6 +8,4 @@
ng-keydown="vm.handleUserSubmitOnEnter($event)"
transform-float-value
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}" />

@ -7,6 +7,4 @@
ng-blur="vm.handleUserBlur()"
ng-keydown="vm.handleUserSubmitOnEnter($event)"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}" />

@ -10,8 +10,6 @@
ng-required="vm.field.required"
ng-focus="vm.handleUserFocus()"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}"
ng-change="vm.handleUserSubmit()"
>
@ -34,8 +32,6 @@
ng-required="vm.field.required"
ng-focus="vm.handleUserFocus()"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}"
multiple=""
size=5

@ -6,8 +6,6 @@
ng-required="vm.field.required"
ng-focus="vm.handleUserFocus()"
ng-disabled="vm.workPackage.inFlight"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-attr-id="{{vm.htmlId}}"
role="listbox">
<option value=""

@ -6,6 +6,5 @@
ng-focus="vm.handleUserFocus()"
ng-disabled="vm.workPackage.inFlight"
ng-keydown="vm.handleUserSubmitOnEnter($event)"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
focus="vm.field.name === 'subject'"
ng-attr-id="{{vm.htmlId}}" />

@ -7,8 +7,6 @@
style="min-height: 114px"
class="focus-input wp-inline-edit--field inplace-edit--textarea -animated"
name="value"
focus="vm.shouldFocus()"
focus-priority="vm.shouldFocus()"
ng-hide="vm.field.isPreview"
ng-required="vm.field.required"
ng-disabled="vm.field.isBusy || vm.workPackage.inFlight"

Loading…
Cancel
Save