Fontawesome/Dropdown/Accordion error
See original GitHub issueGetting two errors on firefox 72, does not appear to have an affect on the framework, but i haven’t tested that much. Happens on a fresh install of fomantic and only on firefox afaik.
downloadable font: OS/2: Bad sTypoLineGap, setting it to 0: -32 (font-family: "Dropdown" style:normal weight:400 stretch:100 src index:0) source: data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAA … AG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
downloadable font: OS/2: Bad sTypoLineGap, setting it to 0: -32 (font-family: "Accordion" style:normal weight:400 stretch:100 src index:0) source: data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAA … AHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
icon change on accordion dropdown, but the Javascript file ...
However when I load the HTML file locally I get a 'Uncaught ReferenceError: $ is not defined' error. I assume this is what's...
Read more >chevron-down Icon
chevron-down icon in the Solid style. Make a bold statement in small sizes.. Available now in Font Awesome 6.
Read more >Font Awesome Icon Issues | Themeco Docs
A common problem related to Font Awesome icons missing is due to the domain being requested outside the domain of which the resource...
Read more >How to change (-, +) symbol with a button in Bootstrap ...
Finally, use jQuery toggleClass() method to change (-, +) symbol with a button Bootstrap Accordion In fontawesome, class=”fas fa-plus” for ...
Read more >Font Awesome Directional Icons
The table below shows all Font Awesome Directional icons: ... Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed by https://github.com/fomantic/Fomantic-UI/pull/2480
I ran into this same problem in my nav menu. It, of course, has dropdowns to show additional submenus/options… and I was using the bog-standard Fomantic-UI
$(".ui.dropdown").dropdown();
as well…If you have the same problem, you can resolve the issue in two different ways:
<i class="dropdown icon">
tags to<i class="caret down icon">
, and/or$(".ui.dropdown").dropdown();
to
$('div.ui.dropdown').dropdown();
and$('select.ui.dropdown').dropdown();
…the keyword
dropdown
, in the context of an icon, if you use the standard documentation’s recommended jQuery call, is unfortunately being interpreted as a dropdown menu.I would suggest that the Fomantic team change the documentation for dropdown usage… by replacing:
$('.ui.dropdown')
.dropdown()
;
with
$('div.ui.dropdown').dropdown();
and$('select.ui.dropdown').dropdown();