JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "2a88d643ec7f77f299781eee30fb9654.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/storage/framework/views/2a88d643ec7f77f299781eee30fb9654.php
File size: 5.6 KB
MIME-type: text/html
Charset: utf-8

<script>
    "use strict";

    function wishlistToggle(course_id, elem) {
        $.ajax({
            type: "get",
            url: "<?php echo e(route('toggleWishItem')); ?>" + '/' + course_id,
            success: function(response) {
                if (response) {
                    if (response.toggleStatus == 'added') {
                        $(elem).addClass('inList');

                        $(elem).attr('data-bs-title', '<?php echo e(get_phrase('Remove from wishlist')); ?>')
                        .tooltip('dispose')
                        .tooltip('show');

                        success('<?php echo e(get_phrase('This course added to your wishlist')); ?>');

                    } else if (response.toggleStatus == 'removed') {
                        $(elem).removeClass('inList');

                        $(elem).attr('data-bs-title', '<?php echo e(get_phrase('Add to wishlist')); ?>')
                        .tooltip('dispose')
                        .tooltip('show');

                        success('<?php echo e(get_phrase('This course removed from your wishlist')); ?>');
                    }
                }
            }
        });
    }

    $(document).ready(function() {
        //When need to add a wishlist button inside a anchor tag
        $('.checkPropagation').on('click', function(event) {
            var action = $(this).attr('action');
            var onclickFunction = $(this).attr('onclick');
            var onChange = $(this).attr('onchange');
            var tag = $(this).prop("tagName").toLowerCase();
            console.log(tag);
            if (tag != 'a' && action) {
                $(location).attr('href', $(this).attr('action'));
                return false;
            } else if (onclickFunction) {
                if (onclickFunction) {
                    onclickFunction;
                }
                return false;
            } else if (tag == 'a') {
                return true;
            }
        });


        // change course layout grid and list in course page
        $('.layout').on('click', function(e) {
            e.preventDefault();
            let layout = $(this).attr('id');

            $.ajax({
                type: "get",
                url: "<?php echo e(route('change.layout')); ?>",
                data: {
                    view: layout
                },
                success: function(response) {
                    if (response.reload) {
                        window.location.reload(1);
                    }
                }
            });
        });

        // toggleWishItems
        $('.toggleWishItem').on('click', function(e) {
            e.stopPropagation();
            e.preventDefault();

            let get_item_id = $(this).attr('id');
            let item_id = get_item_id.split('-');
            item_id = item_id[1];

            const $this = $(this);

            $.ajax({
                type: "get",
                url: "<?php echo e(route('toggleWishItem')); ?>" + '/' + item_id,
                success: function(response) {
                    if (response) {
                        if (response.toggleStatus == 'added') {
                            $this.addClass('inList');
                        } else if (response.toggleStatus == 'removed') {
                            $this.removeClass('inList');
                        }
                        window.location.reload(1);
                    }
                }
            });
        });
    });

    $(function() {
        if ($('.tagify:not(.inited)').length) {
            var tagify = new Tagify(document.querySelector('.tagify:not(.inited)'), {
                placeholder: '<?php echo e(get_phrase('Enter your keywords')); ?>'
            })
            $('.tagify:not(.inited)').addClass('inited');
        }


        $('[data-bs-toggle="tooltip"]').tooltip();


        //Overlap content start
        document.querySelectorAll('.overlay-content').forEach(function(elem){
            overlayCollapse(elem);
        });
        
        function overlayCollapse(elem){
            if (elem.classList.contains('show-more')) {
                elem.classList.add('show-less');
                elem.classList.remove('show-more');
                elem.querySelector('p a.overlay-action').textContent = "<?php echo e(get_phrase('Show less')); ?> - ";
            } else if (elem.classList.contains('show-less')) {
                elem.classList.add('show-more');
                elem.classList.remove('show-less');
                elem.querySelector('p a.overlay-action').textContent = "<?php echo e(get_phrase('Show more')); ?> + ";
            } else {
                elem.classList.add('show-more');
                elem.insertAdjacentHTML('beforeend', '<p><a href="javascript:;" class="overlay-action title text-14px"><?php echo e(get_phrase("Show more")); ?> + </a></p>');
                
                // Select the newly added element and attach the event listener
                elem.querySelector('p a.overlay-action').addEventListener('click', function(event) {
                    event.preventDefault();
                    overlayCollapse(elem);
                });
            }
        }    
        //Overlap content ended
    });
</script>

<script>
    "use strict";
    
    $.ajaxSetup({
        headers: {
            'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
        }
    });
    $(document).ready(function() {
        $('.gSearch-icon').on('click', function() {
            $('.gSearch-show').toggleClass('active');
        });
    });
</script>
<?php /**PATH /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/frontend/default/scripts.blade.php ENDPATH**/ ?>