﻿var FormFormat =
{
    Init: function () {
        $(".formformat_integer").format({ precision: 0, autofix: true });
    }
}

$(document).ready(function () {
    FormFormat.Init();
});
