269 lines
8.0 KiB
JavaScript
269 lines
8.0 KiB
JavaScript
!function ($) {
|
|
|
|
$(function(){
|
|
|
|
// sparkline
|
|
var sr, sparkline = function($re){
|
|
$(".sparkline").each(function(){
|
|
var $data = $(this).data();
|
|
if($re && !$data.resize) return;
|
|
($data.type == 'pie') && $data.sliceColors && ($data.sliceColors = eval($data.sliceColors));
|
|
($data.type == 'bar') && $data.stackedBarColor && ($data.stackedBarColor = eval($data.stackedBarColor));
|
|
$data.valueSpots = {'0:': $data.spotColor};
|
|
$(this).sparkline('html', $data);
|
|
});
|
|
};
|
|
$(window).resize(function(e) {
|
|
clearTimeout(sr);
|
|
sr = setTimeout(function(){sparkline(true)}, 500);
|
|
});
|
|
sparkline(false);
|
|
|
|
|
|
// easypie
|
|
$('.easypiechart').each(function(){
|
|
var $this = $(this),
|
|
$data = $this.data(),
|
|
$step = $this.find('.step'),
|
|
$target_value = parseInt($($data.target).text()),
|
|
$value = 0;
|
|
$data.barColor || ( $data.barColor = function($percent) {
|
|
$percent /= 100;
|
|
return "rgb(" + Math.round(200 * $percent) + ", 200, " + Math.round(200 * (1 - $percent)) + ")";
|
|
});
|
|
$data.onStep = function(value){
|
|
$value = value;
|
|
$step.text(parseInt(value));
|
|
$data.target && $($data.target).text(parseInt(value) + $target_value);
|
|
}
|
|
$data.onStop = function(){
|
|
$target_value = parseInt($($data.target).text());
|
|
$data.update && setTimeout(function() {
|
|
$this.data('easyPieChart').update(100 - $value);
|
|
}, $data.update);
|
|
}
|
|
$(this).easyPieChart($data);
|
|
});
|
|
|
|
// combodate
|
|
$(".combodate").each(function(){
|
|
$(this).combodate();
|
|
$(this).next('.combodate').find('select').addClass('form-control');
|
|
});
|
|
|
|
// datepicker
|
|
$(".datepicker-input").each(function () {
|
|
$(this).datepicker({
|
|
//todayHighlight: true
|
|
});
|
|
});
|
|
|
|
// dropfile
|
|
$('.dropfile').each(function(){
|
|
var $dropbox = $(this);
|
|
if (typeof window.FileReader === 'undefined') {
|
|
$('small',this).html('File API & FileReader API not supported').addClass('text-danger');
|
|
return;
|
|
}
|
|
|
|
this.ondragover = function () {$dropbox.addClass('hover'); return false; };
|
|
this.ondragend = function () {$dropbox.removeClass('hover'); return false; };
|
|
this.ondrop = function (e) {
|
|
e.preventDefault();
|
|
$dropbox.removeClass('hover').html('');
|
|
var file = e.dataTransfer.files[0],
|
|
reader = new FileReader();
|
|
reader.onload = function (event) {
|
|
$dropbox.append($('<img>').attr('src', event.target.result));
|
|
};
|
|
reader.readAsDataURL(file);
|
|
return false;
|
|
};
|
|
});
|
|
|
|
// fuelux pillbox
|
|
var addPill = function($input){
|
|
var $text = $input.val(), $pills = $input.closest('.pillbox'), $repeat = false, $repeatPill;
|
|
if($text == "") return;
|
|
$("li", $pills).text(function(i,v){
|
|
if(v == $text){
|
|
$repeatPill = $(this);
|
|
$repeat = true;
|
|
}
|
|
});
|
|
if($repeat) {
|
|
$repeatPill.fadeOut().fadeIn();
|
|
return;
|
|
};
|
|
$item = $('<li class="label bg-dark">'+$text+'</li> ');
|
|
$item.insertBefore($input);
|
|
$input.val('');
|
|
$pills.trigger('change', $item);
|
|
};
|
|
|
|
$('.pillbox input').on('blur', function() {
|
|
addPill($(this));
|
|
});
|
|
|
|
$('.pillbox input').on('keypress', function(e) {
|
|
if(e.which == 13) {
|
|
e.preventDefault();
|
|
addPill($(this));
|
|
}
|
|
});
|
|
|
|
// slider
|
|
$('.slider').each(function(){
|
|
$(this).slider();
|
|
});
|
|
|
|
// wizard
|
|
var $nextText;
|
|
$(document).on('click', '[data-wizard]', function (e) {
|
|
var $this = $(this), href;
|
|
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, ''));
|
|
var option = $this.data('wizard');
|
|
var item = $target.wizard('selectedItem');
|
|
var $step = $target.next().find('.step-pane:eq(' + (item.step-1) + ')');
|
|
!$nextText && ($nextText = $('[data-wizard="next"]').html());
|
|
var validated = false;
|
|
$('[data-required="true"]', $step).each(function(){
|
|
return (validated = $(this).parsley( 'validate' ));
|
|
});
|
|
if($(this).hasClass('btn-next') && !validated){
|
|
return false;
|
|
}else{
|
|
$target.wizard(option);
|
|
var activeStep = (option=="next") ? (item.step+1) : (item.step-1);
|
|
var prev = ($(this).hasClass('btn-prev') && $(this)) || $(this).prev();
|
|
var next = ($(this).hasClass('btn-next') && $(this)) || $(this).next();
|
|
prev.attr('disabled', (activeStep == 1) ? true : false);
|
|
next.html((activeStep < $target.find('li').length) ? $nextText : next.data('last'));
|
|
}
|
|
});
|
|
|
|
// sortable
|
|
if ($.fn.sortable) {
|
|
$('.sortable').sortable();
|
|
}
|
|
|
|
// slim-scroll
|
|
$('.no-touch .slim-scroll').each(function(){
|
|
var $self = $(this), $data = $self.data(), $slimResize;
|
|
$self.slimScroll($data);
|
|
$(window).resize(function(e) {
|
|
clearTimeout($slimResize);
|
|
$slimResize = setTimeout(function(){$self.slimScroll($data);}, 500);
|
|
});
|
|
|
|
$(document).on('updateNav', function(){
|
|
$self.slimScroll($data);
|
|
});
|
|
});
|
|
|
|
// pjax
|
|
if ($.support.pjax) {
|
|
$(document).on('click', 'a[data-pjax]', function(event) {
|
|
event.preventDefault();
|
|
var container = $($(this).data('target'));
|
|
$.pjax.click(event, {container: container});
|
|
})
|
|
};
|
|
|
|
// portlet
|
|
$('.portlet').each(function(){
|
|
$(".portlet").sortable({
|
|
connectWith: '.portlet',
|
|
iframeFix: false,
|
|
items: '.portlet-item',
|
|
opacity: 0.8,
|
|
helper: 'original',
|
|
revert: true,
|
|
forceHelperSize: true,
|
|
placeholder: 'sortable-box-placeholder round-all',
|
|
forcePlaceholderSize: true,
|
|
tolerance: 'pointer'
|
|
});
|
|
});
|
|
|
|
// docs
|
|
$('#docs pre code').each(function(){
|
|
var $this = $(this);
|
|
var t = $this.html();
|
|
$this.html(t.replace(/</g, '<').replace(/>/g, '>'));
|
|
});
|
|
|
|
// fontawesome
|
|
$(document).on('click', '.fontawesome-icon-list a', function(e){
|
|
e && e.preventDefault();
|
|
});
|
|
|
|
// table select/deselect all
|
|
$(document).on('change', 'table thead [type="checkbox"]', function(e){
|
|
e && e.preventDefault();
|
|
var $table = $(e.target).closest('table'), $checked = $(e.target).is(':checked');
|
|
$('tbody [type="checkbox"]',$table).prop('checked', $checked);
|
|
});
|
|
|
|
// random progress
|
|
$(document).on('click', '[data-toggle^="progress"]', function(e){
|
|
e && e.preventDefault();
|
|
|
|
$el = $(e.target);
|
|
$target = $($el.data('target'));
|
|
$('.progress', $target).each(
|
|
function(){
|
|
var $max = 50, $data, $ps = $('.progress-bar',this).last();
|
|
($(this).hasClass('progress-xs') || $(this).hasClass('progress-sm')) && ($max = 100);
|
|
$data = Math.floor(Math.random()*$max)+'%';
|
|
$ps.css('width', $data).attr('data-original-title', $data);
|
|
}
|
|
);
|
|
});
|
|
|
|
// add notes
|
|
function addMsg($msg){
|
|
var $el = $('.nav-user'), $n = $('.count:first', $el), $v = parseInt($n.text());
|
|
$('.count', $el).fadeOut().fadeIn().text($v);
|
|
$($msg).hide().prependTo($el.find('.list-group')).slideDown().css('display','block');
|
|
}
|
|
var $msg = '<a href="#" class="media list-group-item">'+
|
|
'<span class="pull-left thumb-sm text-center">'+
|
|
'<i class="fa fa-envelope-o fa-2x text-success"></i>'+
|
|
'</span>'+
|
|
'<span class="media-body block m-b-none">'+
|
|
'Sophi sent you a email<br>'+
|
|
'<small class="text-muted">1 minutes ago</small>'+
|
|
'</span>'+
|
|
'</a>';
|
|
setTimeout(function(){addMsg($msg);}, 1500);
|
|
|
|
// datatable
|
|
$('[data-ride="datatables"]').each(function() {
|
|
var oTable = $(this).dataTable( {
|
|
"bProcessing": true,
|
|
"sAjaxSource": "js/data/datatable.json",
|
|
"sDom": "<'row'<'col-sm-6'l><'col-sm-6'f>r>t<'row'<'col-sm-6'i><'col-sm-6'p>>",
|
|
"sPaginationType": "full_numbers",
|
|
"aoColumns": [
|
|
{ "mData": "engine" },
|
|
{ "mData": "browser" },
|
|
{ "mData": "platform" },
|
|
{ "mData": "version" },
|
|
{ "mData": "grade" }
|
|
]
|
|
} );
|
|
});
|
|
|
|
// select2
|
|
if ($.fn.select2) {
|
|
$("#select2-option").select2();
|
|
$("#select2-tags").select2({
|
|
tags:["red", "green", "blue"],
|
|
tokenSeparators: [",", " "]}
|
|
);
|
|
}
|
|
|
|
|
|
});
|
|
}(window.jQuery); |