2017-01-11 03:38:55 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
|
|
|
* Module containing core application logic.
|
|
|
|
* @param {jQuery} $ Insulated jQuery object
|
|
|
|
* @param {JSON} settings Insulated `window.snipeit.settings` object.
|
|
|
|
* @return {IIFE} Immediately invoked. Returns self.
|
|
|
|
*/
|
2016-05-24 16:10:04 -07:00
|
|
|
|
2017-05-31 05:23:26 -07:00
|
|
|
var lineOptions = {
|
|
|
|
|
|
|
|
legend: {
|
|
|
|
position: "bottom"
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
fontColor: "rgba(0,0,0,0.5)",
|
|
|
|
fontStyle: "bold",
|
|
|
|
beginAtZero: true,
|
|
|
|
maxTicksLimit: 5,
|
|
|
|
padding: 20
|
|
|
|
},
|
|
|
|
gridLines: {
|
|
|
|
drawTicks: false,
|
|
|
|
display: false
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
xAxes: [{
|
|
|
|
gridLines: {
|
|
|
|
zeroLineColor: "transparent"
|
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
padding: 20,
|
|
|
|
fontColor: "rgba(0,0,0,0.5)",
|
|
|
|
fontStyle: "bold"
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2016-05-24 16:10:04 -07:00
|
|
|
|
|
|
|
var pieOptions = {
|
|
|
|
//Boolean - Whether we should show a stroke on each segment
|
|
|
|
segmentShowStroke: true,
|
|
|
|
//String - The colour of each segment stroke
|
|
|
|
segmentStrokeColor: "#fff",
|
|
|
|
//Number - The width of each segment stroke
|
|
|
|
segmentStrokeWidth: 1,
|
|
|
|
//Number - The percentage of the chart that we cut out of the middle
|
|
|
|
percentageInnerCutout: 50, // This is 0 for Pie charts
|
|
|
|
//Number - Amount of animation steps
|
|
|
|
animationSteps: 100,
|
|
|
|
//String - Animation easing effect
|
|
|
|
animationEasing: "easeOutBounce",
|
|
|
|
//Boolean - Whether we animate the rotation of the Doughnut
|
|
|
|
animateRotate: true,
|
|
|
|
//Boolean - Whether we animate scaling the Doughnut from the centre
|
|
|
|
animateScale: false,
|
|
|
|
//Boolean - whether to make the chart responsive to window resizing
|
|
|
|
responsive: true,
|
|
|
|
// Boolean - whether to maintain the starting aspect ratio or not when responsive, if set to false, will take up entire container
|
|
|
|
maintainAspectRatio: false,
|
|
|
|
|
|
|
|
//String - A legend template
|
|
|
|
legendTemplate: "<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<segments.length; i++){%><li>" +
|
|
|
|
"<i class='fa fa-circle-o' style='color: <%=segments[i].fillColor%>'></i>" +
|
|
|
|
"<%if(segments[i].label){%><%=segments[i].label%><%}%> foo</li><%}%></ul>",
|
|
|
|
//String - A tooltip template
|
|
|
|
tooltipTemplate: "<%=value %> <%=label%> "
|
|
|
|
};
|
2017-01-11 03:38:55 -08:00
|
|
|
|
2016-05-24 16:10:04 -07:00
|
|
|
//-----------------
|
|
|
|
//- END PIE CHART -
|
|
|
|
//-----------------
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
(function($, settings) {
|
|
|
|
var Components = {};
|
|
|
|
Components.modals = {};
|
|
|
|
|
|
|
|
// confirm delete modal
|
|
|
|
Components.modals.confirmDelete = function() {
|
|
|
|
var $el = $('table');
|
|
|
|
|
|
|
|
var events = {
|
|
|
|
'click': function(evnt) {
|
|
|
|
var $context = $(this);
|
|
|
|
var $dataConfirmModal = $('#dataConfirmModal');
|
|
|
|
var href = $context.attr('href');
|
|
|
|
var message = $context.attr('data-content');
|
|
|
|
var title = $context.attr('data-title');
|
|
|
|
|
|
|
|
$('#myModalLabel').text(title);
|
|
|
|
$dataConfirmModal.find('.modal-body').text(message);
|
2016-12-19 10:42:33 -08:00
|
|
|
$('#deleteForm').attr('action', href);
|
2016-03-25 01:18:05 -07:00
|
|
|
$dataConfirmModal.modal({
|
|
|
|
show: true
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var render = function() {
|
|
|
|
$el.on('click', '.delete-asset', events['click']);
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
render: render
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Application start point
|
|
|
|
* Component definition stays out of load event, execution only happens.
|
|
|
|
*/
|
|
|
|
$(function() {
|
|
|
|
new Components.modals.confirmDelete().render();
|
|
|
|
});
|
|
|
|
}(jQuery, window.snipeit.settings));
|
2016-05-24 16:10:04 -07:00
|
|
|
|
|
|
|
|
2017-01-11 03:55:47 -08:00
|
|
|
|
2017-01-11 03:38:55 -08:00
|
|
|
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
2017-01-11 05:51:13 -08:00
|
|
|
/*
|
|
|
|
* Slideout help menu
|
|
|
|
*/
|
|
|
|
$('.slideout-menu-toggle').on('click', function(event){
|
|
|
|
console.log('clicked');
|
|
|
|
event.preventDefault();
|
|
|
|
// create menu variables
|
|
|
|
var slideoutMenu = $('.slideout-menu');
|
|
|
|
var slideoutMenuWidth = $('.slideout-menu').width();
|
|
|
|
|
|
|
|
// toggle open class
|
|
|
|
slideoutMenu.toggleClass("open");
|
|
|
|
|
|
|
|
// slide menu
|
|
|
|
if (slideoutMenu.hasClass("open")) {
|
|
|
|
slideoutMenu.show();
|
|
|
|
slideoutMenu.animate({
|
|
|
|
right: "0px"
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
slideoutMenu.animate({
|
|
|
|
right: -slideoutMenuWidth
|
|
|
|
}, "-350px");
|
|
|
|
slideoutMenu.fadeOut();
|
|
|
|
}
|
2017-01-11 03:38:55 -08:00
|
|
|
});
|
2017-01-11 05:51:13 -08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* iCheck checkbox plugin
|
|
|
|
*/
|
2017-01-11 17:07:27 -08:00
|
|
|
|
|
|
|
$('input[type="checkbox"].minimal, input[type="radio"].minimal').iCheck({
|
2017-01-11 05:51:13 -08:00
|
|
|
checkboxClass: 'icheckbox_minimal-blue',
|
|
|
|
radioClass: 'iradio_minimal-blue'
|
|
|
|
});
|
2017-01-11 17:07:27 -08:00
|
|
|
|
2017-01-11 05:51:13 -08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Select2
|
|
|
|
*/
|
2017-01-11 17:07:27 -08:00
|
|
|
|
2017-01-11 05:51:13 -08:00
|
|
|
var iOS = /iPhone|iPad|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
if(!iOS)
|
|
|
|
{
|
2017-01-25 21:29:23 -08:00
|
|
|
// Vue collision: Avoid overriding a vue select2 instance
|
|
|
|
// by checking to see if the item has already been select2'd.
|
2017-05-31 13:26:48 -07:00
|
|
|
$('select.select2:not(".select2-hidden-accessible")').each(function (i,obj) {
|
2017-01-25 21:29:23 -08:00
|
|
|
{
|
|
|
|
$(obj).select2();
|
|
|
|
}
|
|
|
|
});
|
2017-01-11 05:51:13 -08:00
|
|
|
}
|
|
|
|
$('.datepicker').datepicker();
|
2017-01-11 17:07:27 -08:00
|
|
|
|
2017-10-25 20:15:34 -07:00
|
|
|
$(document).ready(function() {
|
|
|
|
$("#toggle_nav").toggle(function() {
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-01-11 05:51:13 -08:00
|
|
|
|
|
|
|
|
|
|
|
});
|