HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/compelsupport/wp-content/themes/compel/assets/pages/jquery.rangeslider.init.js
/**
 * Theme: Metrica - Responsive Bootstrap 4 Admin Dashboard
 * Author: Mannatthemes
 * Rangeslider Js
 */


 
$(document).ready(function () {
  $("#range_01").ionRangeSlider({
    skin: "modern",
  });
  
  $("#range_02").ionRangeSlider({
      min: 100,
      skin: "modern",
      max: 1000,
      from: 550
  });
  
  $("#range_03").ionRangeSlider({
      type: "double",
      grid: true,
      skin: "modern",
      min: 0,
      max: 1000,
      from: 200,
      to: 800,
      prefix: "$"
  });
 
  $("#range_04").ionRangeSlider({
      type: "double",
      skin: "modern",
      grid: true,
      min: -1000,
      max: 1000,
      from: -500,
      to: 500
  });
  
  $("#range_05").ionRangeSlider({
      type: "double",
      skin: "modern",
      grid: true,
      min: -1000,
      max: 1000,
      from: -500,
      to: 500,
      step: 250
  });
  
  $("#range_06").ionRangeSlider({
      grid: true,
      skin: "modern",
      from: 3,
      values: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
  });
  
  $("#range_07").ionRangeSlider({
      grid: true,
      skin: "modern",
      min: 1000,
      max: 1000000,
      from: 200000,
      step: 1000,
      prettify_enabled: true
  });
  
  $("#range_08").ionRangeSlider({
      min: 100,
      skin: "modern",
      max: 1000,
      from: 550,
      disable: true
  });
  $("#range_09").ionRangeSlider({
      grid: true,
      skin: "flat",
      min: 18,
      max: 70,
      from: 30,
      prefix: "Age ",
      max_postfix: "+"
  });
  $("#range_10").ionRangeSlider({
      type: "double",
      skin: "round",
      min: 100,
      max: 200,
      from: 145,
      to: 155,
      prefix: "Weight: ",
      postfix: " million pounds",
      decorate_both: true
  });
  $("#range_11").ionRangeSlider({
    skin: "square",
    type: "single",
    grid: true,
    min: -90,
    max: 90,
    from: 0,
    postfix: "°"
    });
  $("#range_12").ionRangeSlider({
        skin: "sharp",
        type: "double",
        min: 1000,
        max: 2000,
        from: 1200,
        to: 1800,
        hide_min_max: true,
        hide_from_to: true,
        grid: true
    });
});