'use strict';

(function ($) {
    $(document).on("wheel", "input[type=number]", function (e) {
        $(this).blur();
    });
})($);
