return false;
});
- $(document).on('click touchend', '[data-showid]', function () {
+ $(document).on('mouseover', '[data-showid][data-showmode="showonhover"]', function () {
+ $this.showLinkById($(this).data('showid'));
+ return true;
+ }).on('mouseout', '[data-showid][data-showmode="showonhover"]', function () {
+ $this.hideLinkById($(this).data('showid'));
+ }).on('click touchend', '[data-showid][data-showmode="showonhover"]', function () {
+ return false;
+ });
+
+ $(document).on('click touchend', '[data-showid]:not([data-showmode="showonhover"])', function () {
var mode = $(this).data('showmode');
if (mode === 'toggle') {