Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

No attachments yet.

No events scheduled today.

Range Slider Skins

Native HTML5 range input, skinned with CSS color variants -- no JS dependency.

The thumb color is set per-instance with a range-[color] class, matching the theme's brand palette.

<input type="range" class="custom-range range-primary" min="0" max="100" value="50">
Class Value
class="custom-range range-[value]" primary | success | warning | danger | info | teal | indigo | purple | pink | orange | dark

Min/max ranges built from a synced pair of native sliders, since a single native range input only exposes one handle.

function syncDualRange(minEl, maxEl, outEl, prefix) {
  function update() {
    if (+minEl.val() > +maxEl.val()) minEl.val(maxEl.val());
    outEl.text(prefix + minEl.val() + ' - ' + prefix + maxEl.val());
  }
  minEl.on('input', update);
  maxEl.on('input', function () {
    if (+maxEl.val() < +minEl.val()) maxEl.val(minEl.val());
    update();
  });
}