0.0.20 add autocomplete for search in input

This commit is contained in:
2023-07-19 15:50:00 +03:00
parent 113e576d4c
commit 7c320d2709
12 changed files with 300 additions and 14 deletions

52
static/js/rangeSlider.js Normal file
View File

@@ -0,0 +1,52 @@
$(document).ready(function (e){
$('#id_weight').ionRangeSlider({
skin: "round",
type: "single",
min: 0,
max: 1000,
from: 0,
step: 1,
grid: true,
grid_num: 5,
});
});
//
// var RangeSlider = function () {
//
// // Private functions
// var demos = function () {
// // basic demo
// $('#id_weight').ionRangeSlider({
// skin: "round",
// type: "single",
// min: 0,
// max: 1000,
// from: 0,
// step: 1,
// grid: true,
// grid_num: 5,
// });
//
// }
//
// return {
// // public functions
// init: function() {
// demos();
// }
// };
// }();
//
// jQuery(document).ready(function() {
// RangeSlider.init();
// });