modules/XC/CrispWhiteSkin/templates/web/customer/product/quantity_box/parts/quantity_box.twig line 1

Open in your IDE?
  1. {##
  2.  # Main element (input)
  3.  #}
  4. {% if this.getTarget() == 'cart' %}
  5.   <label for="{{ this.getBoxId() }}" class="visually-hidden">{{ t('Quantity') }}</label>
  6. {% endif %}
  7. <input
  8.   type="number"
  9.   min="1"
  10.   inputmode="numeric"
  11.   value="{{ this.getBoxValue() }}"
  12.   class="{{ this.getClass() }}"
  13.   id="{{ this.getBoxId() }}"
  14.   name="{{ this.getBoxName() }}"
  15.   title="{{ t(this.getBoxTitle()) }}"
  16.   onclick="this.focus();"/>
  17. <span class="wheel-mark">&nbsp;</span>