12345678910111213141516171819202122232425262728 |
- /*=========================================================================================
- File Name: 3-columns-left-sidebar.js
- Description: Invoices list datables configurations
- ----------------------------------------------------------------------------------------
- Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
- Author: Pixinvent
- Author URL: hhttp://www.themeforest.net/user/pixinvent
- ==========================================================================================*/
- $(document).ready(function() {
- /***********************************
- * js of small Slider *
- ************************************/
- var sm_options = {
- start: [30,70],
- behaviour: 'drag',
- connect: true,
- range: {
- 'min': 20,
- 'max': 80
- }
- };
- var smallSlider = document.getElementById('small-slider');
- noUiSlider.create(smallSlider, sm_options);
- $(".sidebar-sticky").sticky();
- });
|