1*71239cb6SGreg Roach/** 2*71239cb6SGreg Roach * webtrees: online genealogy 3*71239cb6SGreg Roach * Copyright (C) 2018 webtrees development team 4*71239cb6SGreg Roach * This program is free software: you can redistribute it and/or modify 5*71239cb6SGreg Roach * it under the terms of the GNU General Public License as published by 6*71239cb6SGreg Roach * the Free Software Foundation, either version 3 of the License, or 7*71239cb6SGreg Roach * (at your option) any later version. 8*71239cb6SGreg Roach * This program is distributed in the hope that it will be useful, 9*71239cb6SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 10*71239cb6SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11*71239cb6SGreg Roach * GNU General Public License for more details. 12*71239cb6SGreg Roach * You should have received a copy of the GNU General Public License 13*71239cb6SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 14*71239cb6SGreg Roach */ 15*71239cb6SGreg Roach 16*71239cb6SGreg Roachimport $ from "jquery"; 17*71239cb6SGreg Roachwindow.$ = window.jQuery = $; 18*71239cb6SGreg Roach 19*71239cb6SGreg Roachimport "popper.js"; 20*71239cb6SGreg Roachimport "bootstrap"; 21*71239cb6SGreg Roachimport "datatables.net"; 22*71239cb6SGreg Roach 23*71239cb6SGreg Roachwindow.Bloodhound = require("corejs-typeahead/dist/bloodhound.min.js"); 24*71239cb6SGreg Roachimport "corejs-typeahead"; 25*71239cb6SGreg Roach 26*71239cb6SGreg Roachimport "datatables.net-bs4"; 27*71239cb6SGreg Roach 28*71239cb6SGreg Roach// See https://github.com/RubaXa/Sortable/issues/1229 29*71239cb6SGreg Roachwindow.Sortable = require('sortablejs'); 30*71239cb6SGreg Roach 31*71239cb6SGreg Roachimport "select2"; 32*71239cb6SGreg Roach 33*71239cb6SGreg Roachimport "moment"; 34*71239cb6SGreg Roach 35*71239cb6SGreg Roachimport "jquery-colorbox"; 36*71239cb6SGreg Roach 37*71239cb6SGreg Roachimport "wheelzoom"; 38*71239cb6SGreg Roach 39*71239cb6SGreg Roachimport "leaflet"; 40*71239cb6SGreg Roachimport "leaflet-providers"; 41*71239cb6SGreg Roachwindow.GeoSearch = require("leaflet-geosearch"); 42*71239cb6SGreg Roachimport "leaflet.markercluster"; 43*71239cb6SGreg Roachimport "beautifymarker"; 44