mrvautin / expressCart

A fully functioning Node.js shopping cart with Stripe, PayPal, Authorize.net, PayWay, Blockonomics, Adyen, Zip and Instore payments.
https://expresscart-demo.markmoffat.com
MIT License
2.25k stars 876 forks source link

How to Make Dashboard Global Search Icon Clickable on Safari #208

Closed bulog closed 3 years ago

bulog commented 3 years ago

Hi When I visit the dashboard on Google Chrome, everything works fine. But when I switch to Safari, I find that after I click the global search icon on the right side of the logo, nothing happened, there should be a search modal

The way I tried, and it's works

Open views/partials/menu.hbs, at line 6

Change <a href="#" data-toggle="modal" data-target="#globalSearchModal" class="sidebar-search text-muted">{{{feather 'search'}}}</a> to <a href="#" data-toggle="modal" data-target="#globalSearchModal" class="sidebar-search sidebar-link-addon text-muted">{{{feather 'search'}}}</a>

Hope this can help anybody with the same issue