3.0.0 Bug Report Thread
-
@baris On mine.
EDIT: Found the culprit. I replicated the tooltip function as I add arbitrary content to the navbar after it is loaded for the swatch code I'm working on
function setupSwatchTooltip() { // remove title from user icon in sidebar to prevent double tooltip $('.sidebar [component="header/avatar"] .avatar').removeAttr('title'); const tooltipEls = $('.sidebar [title]'); tooltipEls.tooltip({ trigger: 'manual', animation: false, }); tooltipEls.on('mouseenter', function (ev) { const target = $(ev.target); const isDropdown = target.hasClass('dropdown-menu') || !!target.parents('.dropdown-menu').length; if (!$('.sidebar').hasClass('open') && !isDropdown) { $(this).tooltip('show'); } }); tooltipEls.on('click mouseleave', function () { $(this).tooltip('hide'); }); }
Uncaught TypeError: No method named "destroy"
relates to this function. Fixed with a small changetooltipEls.on('click mouseleave', function () { $(this).tooltip('dispose'); });
As of Boostrap version 4.1, the method
destroy
has been replaced bydispose
-
Small input width on Sign up/Sign in page
Very big header...
And...
Device: ipad
-
@brazzerstop said in 3.0.0 Bug Report Thread:
Very big header...
I've already talked about huge useless headline going against the plans to lighten vertical design that were announced as the basis for Harmony.
Unfortunately, a lot of useless meta-information has been collected in header/title, which is not needed by 95% of visitors. It would be nice to hide this behind icons and drop-down menus.
-
this is on ios, safari... I am not writing any reply, although the forum thinks I am typing something...
-
This is not bug report, but I think need add this to Harmony.
+any place and option to choice category (like draft)
or add option to allow collapse/expand only left sidebar or only right sidebar or two sidebar.
-
Perhaps my imagination (although I don't think so), but v3 is slower than v2 in terms of overall performance. We're not comparing a Ferrari with a Horse and Cart, but it's definitely slower in my view, and a simple pagespeed does show quite a difference between the two.