Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. if (this.options.php.manualPrice) {
  2. $('[data-toggle='popover-price']').popover({
  3. content: function() {
  4. return '' +
  5. '<div class="form-inline">' +
  6. '<div class="form-group">' +
  7. '<input name="price[min]" value="' + $('#price-from').text() + '" type="text" class="form-control form-control-sm" id="min-price-value" />' +
  8. '</div>' +
  9. '<div class="form-group">-</div>' +
  10. '<div class="form-group">' +
  11. '<input name="price[max]" value="' + $('#price-to').text() + '" type="text" class="form-control form-control-sm" id="max-price-value" />' +
  12. '</div>' +
  13. '</div>';
  14. },
  15. html: true,
  16. delay: { 'show': 700, 'hide': 500 },
  17. placement: 'top',
  18. container: '#filter',
  19. title: 'Указать цену',
  20. trigger: 'hover'
  21. });
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement