I am currently trying to integrate Semantic UI into my app. The visual styling is displaying fine. However, behaviors do not appear to be working and I am not able to raise any form of exceptions in my console to help with debugging.
- I created a Meteor test app at https://github.com/andersr/semantic-test
- I do not see any exceptions in the console and am not sure how to troubleshoot this. Any suggestions would be appreciated.
Some relevant code snippets:
Markup for a user nav dropdown:
<div class="ui dropdown link item">
{{currentUser.name}}
<i class="dropdown icon"></i>
<div class="menu">
<a class="item">Sign Out</a>
</div>
</div>
custom.semantic.json file:
{
"definitions": {
...
"dropdown": true,
...
}
}
Invoking the dropdown in /client/client.js (though not sure if this is needed):
$('.dropdown').dropdown({
transition: 'drop'
});