Good day. I'm trying to use Anthony Terrien's jquery Knob with Zurb Foundation but it seems like the text input is broken. Here is a screenshot:
https://i.stack.imgur.com/3fRB7.png
As you can see, the input[type="text"] is in the lower left part of the page. I tried to make it in an empty HTML page and it works just fine so I assume that the problem is with the implementation of Foundation, but I can't find which part of it breaks the knob.
Here the HTML:
<div class="row">
<div class="medium-12 column bpm">
<div class="medium-5 medium-centered column">
<input type="text" value="100" class="dial">
</div>
</div>
</div>
And the JS:
$('.dial').knob({
'min': 0,
'max': 200,
'angleOffset': 45,
'fgColor': '#cc0000',
'font': 'Raleway',
'fontWeight': '300',
'thickness': .1
});