iPhone keyboard does not close on "return"?

I am using b14. I just added a text input field to my settings view:

<li>
    <label class="item item-input">
        <input type="text" placeholder="..." ng-model="ssbf.Omrade" ng-change="updateTotals()">
    </label>
</li>

My problem is that when I run the app on an IOS8 device the keyboard comes up when I enter the field, and I can type stuff and have my ng-change handler run.

BUT! the keyboard doesn’t go away when I press “return”. It is stuck. Which makes the whole app stuck.

…and I am kind of stuck trying to figure what could be causing this???