mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-09-25 15:34:55 -04:00
rails-assets.org is down, and bundler can't install anything while a gem's source is unreachable, so CI fails for every branch before a single spec runs. The one gem from there was rails-assets-leaflet.markercluster; it now comes from npm, where the React bundle's packages already come from, and node_modules is already on the asset path. CI and Heroku both install npm packages. That gem also brought in rails-assets-leaflet, a second copy of Leaflet (1.5.1), which shadowed the leaflet-rails gem the Gemfile asks for. With it gone, the maps get Leaflet 1.9.4 from leaflet-rails, as intended, so the cluster plugin is its current release, 1.5.3, which supports it. npm's peer dependency warning for leaflet is expected: Leaflet comes from the gem, loaded before the plugin. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
34 lines
1.3 KiB
JavaScript
34 lines
1.3 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 vendor/assets/javascripts of plugins, if any, 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
|
|
// the compiled file.
|
|
//
|
|
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
|
// GO AFTER THE REQUIRES BELOW.
|
|
//
|
|
// = require leaflet
|
|
// = require leaflet.markercluster/dist/leaflet.markercluster
|
|
// = require popper
|
|
// = require jquery
|
|
// = require jquery_ujs
|
|
// = require jquery-ui/widgets/autocomplete
|
|
// = require bootstrap-sprockets
|
|
// = require bootstrap-datepicker
|
|
// = require_tree .
|
|
|
|
document.addEventListener('DOMContentLoaded', function(event) {
|
|
var popoverTrigger = Array.prototype.slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'));
|
|
popoverTrigger.map(function(popoverTrigger2) {
|
|
return new bootstrap.Popover(popoverTrigger2);
|
|
});
|
|
|
|
var tooltipTrigger = Array.prototype.slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
|
|
tooltipTrigger.map(function(tooltipTrigger2) {
|
|
return new bootstrap.Tooltip(tooltipTrigger2);
|
|
});
|
|
});
|