Penambahan FrontEnd All-New-Manufacture

This commit is contained in:
pand03
2026-01-31 14:23:04 +07:00
parent 1b2e320b2b
commit 4feb21dcbc
2891 changed files with 426849 additions and 135 deletions

View File

@@ -0,0 +1,49 @@
(function ($) {
"use strict";
$("input[name='demo0']").TouchSpin()
$("input[name='demo1']").TouchSpin({
min: 0,
max: 100,
step: .1,
decimals: 2,
boostat: 5,
maxboostedstep: 10,
postfix: "%"
})
$("input[name='demo2']").TouchSpin({
min: -1e9,
max: 1e9,
stepinterval: 50,
maxboostedstep: 1e7,
prefix: "$"
})
$("input[name='demo_vertical']").TouchSpin({
verticalbuttons: !0
})
$("input[name='demo_vertical2']").TouchSpin({
verticalbuttons: !0,
verticalupclass: "fa fa-plus",
verticaldownclass: "fa fa-minus"
})
$("input[name='demo4']").TouchSpin({
postfix: "a button",
postfix_extraclass: "btn btn-default"
})
$("input[name='demo4_2']").TouchSpin({
postfix: "a button",
postfix_extraclass: "btn btn-default"
})
$("input[name='demo5']").TouchSpin({
prefix: "pre",
postfix: "post"
})
})(jQuery);