Abdullah Almsaeed 7 anni fa
parent
commit
4169db0857

+ 1 - 1
build/less/AdminLTE.less

@@ -1,5 +1,5 @@
 /*!
- *   AdminLTE v2.3.8
+ *   AdminLTE v2.3.12
  *   Author: Almsaeed Studio
  *	 Website: Almsaeed Studio <http://almsaeedstudio.com>
  *   License: Open source - MIT

+ 1 - 1
dist/css/AdminLTE.css

@@ -1,5 +1,5 @@
 /*!
- *   AdminLTE v2.3.8
+ *   AdminLTE v2.3.12
  *   Author: Almsaeed Studio
  *	 Website: Almsaeed Studio <http://almsaeedstudio.com>
  *   License: Open source - MIT

+ 1 - 1
dist/css/AdminLTE.min.css

@@ -1,5 +1,5 @@
 /*!
- *   AdminLTE v2.3.8
+ *   AdminLTE v2.3.12
  *   Author: Almsaeed Studio
  *	 Website: Almsaeed Studio <http://almsaeedstudio.com>
  *   License: Open source - MIT

+ 1 - 1
documentation/build/index.html

@@ -166,7 +166,7 @@ include "license.html"
 
       <footer class="main-footer">
         <div class="pull-right hidden-xs">
-          <b>Version</b> 2.4.0
+          <b>Version</b> 2.3.12
         </div>
         <strong>Copyright &copy; 2014-2016 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights reserved.
       </footer>

+ 62 - 2
pages/UI/sliders.html

@@ -814,8 +814,68 @@
 <script>
   $(function () {
     /* BOOTSTRAP SLIDER */
-    $('.slider').slider()
-  })
+    $('.slider').slider();
+
+    /* ION SLIDER */
+    $("#range_1").ionRangeSlider({
+      min: 0,
+      max: 5000,
+      from: 1000,
+      to: 4000,
+      type: 'double',
+      step: 1,
+      prefix: "$",
+      prettify: false,
+      hasGrid: true
+    });
+    $("#range_2").ionRangeSlider({});
+
+    $("#range_5").ionRangeSlider({
+      min: 0,
+      max: 10,
+      type: 'single',
+      step: 0.1,
+      postfix: " mm",
+      prettify: false,
+      hasGrid: true
+    });
+    $("#range_6").ionRangeSlider({
+      min: -50,
+      max: 50,
+      from: 0,
+      type: 'single',
+      step: 1,
+      postfix: "°",
+      prettify: false,
+      hasGrid: true
+    });
+
+    $("#range_4").ionRangeSlider({
+      type: "single",
+      step: 100,
+      postfix: " light years",
+      from: 55000,
+      hideMinMax: true,
+      hideFromTo: false
+    });
+    $("#range_3").ionRangeSlider({
+      type: "double",
+      postfix: " miles",
+      step: 10000,
+      from: 25000000,
+      to: 35000000,
+      onChange: function (obj) {
+        var t = "";
+        for (var prop in obj) {
+          t += prop + ": " + obj[prop] + "\r\n";
+        }
+        $("#result").html(t);
+      },
+      onLoad: function (obj) {
+        //
+      }
+    });
+  });
 </script>
 </body>
 </html>