Files
account_store/static/js/rangeSlider.js

53 lines
849 B
JavaScript

$(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();
// });