mirror of https://github.com/ColorlibHQ/AdminLTE
Resolve conflicts
commit
4169db0857
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* AdminLTE v2.3.8
|
* AdminLTE v2.3.12
|
||||||
* Author: Almsaeed Studio
|
* Author: Almsaeed Studio
|
||||||
* Website: Almsaeed Studio <http://almsaeedstudio.com>
|
* Website: Almsaeed Studio <http://almsaeedstudio.com>
|
||||||
* License: Open source - MIT
|
* License: Open source - MIT
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* AdminLTE v2.3.8
|
* AdminLTE v2.3.12
|
||||||
* Author: Almsaeed Studio
|
* Author: Almsaeed Studio
|
||||||
* Website: Almsaeed Studio <http://almsaeedstudio.com>
|
* Website: Almsaeed Studio <http://almsaeedstudio.com>
|
||||||
* License: Open source - MIT
|
* License: Open source - MIT
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* AdminLTE v2.3.8
|
* AdminLTE v2.3.12
|
||||||
* Author: Almsaeed Studio
|
* Author: Almsaeed Studio
|
||||||
* Website: Almsaeed Studio <http://almsaeedstudio.com>
|
* Website: Almsaeed Studio <http://almsaeedstudio.com>
|
||||||
* License: Open source - MIT
|
* License: Open source - MIT
|
||||||
|
|
|
@ -166,7 +166,7 @@ include "license.html"
|
||||||
|
|
||||||
<footer class="main-footer">
|
<footer class="main-footer">
|
||||||
<div class="pull-right hidden-xs">
|
<div class="pull-right hidden-xs">
|
||||||
<b>Version</b> 2.4.0
|
<b>Version</b> 2.3.12
|
||||||
</div>
|
</div>
|
||||||
<strong>Copyright © 2014-2016 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights reserved.
|
<strong>Copyright © 2014-2016 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights reserved.
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -814,8 +814,68 @@
|
||||||
<script>
|
<script>
|
||||||
$(function () {
|
$(function () {
|
||||||
/* BOOTSTRAP SLIDER */
|
/* 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>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue