tab/app/assets/javascripts/application.js
redfast00 ce5c1e3fbe
Host the charting library ourselves instead of from Google
This fixes the debt chart not working in Firefox (has a built-in tracking blocker). Also made chart nicer
to display by adding percentages
2019-04-13 21:26:51 +02:00

41 lines
1.2 KiB
JavaScript

// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require bootstrap-sprockets
//= require dataTables/jquery.dataTables
//= require dataTables/extras/dataTables.responsive
//= require dataTables/jquery.dataTables
//= require select2
//= require jquery-dateFormat
//= require turbolinks
//= require react
//= require react_ujs
//= require components
//= require Chart.bundle
//= require chartkick
//= require_tree .
ready = function() {
$.each($(".select2-selector"), function(index, val) {
$(val).select2({
width: $(val).data('width'),
placeholder: $(".select2-selector"),
allowClear: true
});
})
}
$(document).ready(ready)
$(document).on('page:load', ready)