diff --git a/js/tabler.js b/js/tabler.js
index b0a518c2f..63c458e54 100644
--- a/js/tabler.js
+++ b/js/tabler.js
@@ -1,18 +1,15 @@
'use strict';
-import {CountUp} from "countup.js";
-import noUiSlider from "nouislider";
import {Dropdown, Tooltip, Popover} from 'bootstrap';
import 'popper.js';
+import {CountUp} from "countup.js";
-
-(function() {
+(function () {
/**
* Dropdown
*/
var dropdownElementList = [].slice.call(document.querySelectorAll('[data-toggle="dropdown"]'))
dropdownElementList.map(function (dropdownToggleEl) {
- console.log('dropdownToggleEl', dropdownToggleEl);
return new Dropdown(dropdownToggleEl, {})
});
@@ -34,21 +31,6 @@ import 'popper.js';
})
});
- /*
- NoUiSlider
- */
- let sliders = document.querySelectorAll("[data-slider]");
- for (let i = 0; i < sliders.length; i++) {
- let dataSlider;
- if (sliders[i].getAttribute("data-slider")) {
- dataSlider = JSON.parse(sliders[i].getAttribute("data-slider"));
- }
- let slider = noUiSlider.create(sliders[i],dataSlider);
- if(dataSlider['js-name']){
- window[dataSlider['js-name']] = slider;
- }
- }
-
/*
CountUp
*/
diff --git a/pages/_includes/forms/form-elements-6.html b/pages/_includes/forms/form-elements-6.html
index c040dc9ee..9288a4fb0 100644
--- a/pages/_includes/forms/form-elements-6.html
+++ b/pages/_includes/forms/form-elements-6.html
@@ -19,7 +19,7 @@
- {% include ui/form/input-icon.html class="form-control-rounded" %}
+ {% include ui/form/input-icon.html input-class="form-control-rounded" %}
diff --git a/pages/_includes/parts/input-range.html b/pages/_includes/parts/input-range.html
index 2c4040783..c5701ce12 100644
--- a/pages/_includes/parts/input-range.html
+++ b/pages/_includes/parts/input-range.html
@@ -1,4 +1,8 @@
-
-
+
+
+ {% include ui/slider.html value=40 %}
+ {% include ui/slider.html value="20" id="simple" connect=true %}
+ {% include ui/slider.html value="60,90" id="connect" %}
+ {% include ui/slider.html value="40" id="color" class="text-green" connect=true %}
diff --git a/pages/_includes/ui/form/input-icon.html b/pages/_includes/ui/form/input-icon.html
index cb0cfc414..7541cd6ed 100644
--- a/pages/_includes/ui/form/input-icon.html
+++ b/pages/_includes/ui/form/input-icon.html
@@ -16,7 +16,7 @@
{{ addon }}
{% endif %}
-
+
{% unless include.prepend %}
{{ addon }}
diff --git a/pages/_includes/ui/form/selectize.html b/pages/_includes/ui/form/selectize.html
index 44e82b19b..f3f43fd48 100644
--- a/pages/_includes/ui/form/selectize.html
+++ b/pages/_includes/ui/form/selectize.html
@@ -4,7 +4,10 @@