source: resources/assets/js/examples/pages/product-list.js@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 462 bytes
Line 
1$(function () {
2 // Add to cart example
3 $(document).on('click', '.add-to-card', function () {
4 $(this)
5 .removeClass('btn-primary')
6 .addClass('btn-success')
7 .text('View Cart');
8 });
9
10 // Range slider example
11 $("#rangeSlider-example").ionRangeSlider({
12 type: "double",
13 min: 10,
14 max: 5000,
15 from: 2000,
16 to: 4000,
17 skin: "round",
18 prefix: '$'
19 });
20})
Note: See TracBrowser for help on using the repository browser.