171239cb6SGreg Roach/** 271239cb6SGreg Roach * webtrees: online genealogy 3242a7862SGreg Roach * Copyright (C) 2019 webtrees development team 471239cb6SGreg Roach * This program is free software: you can redistribute it and/or modify 571239cb6SGreg Roach * it under the terms of the GNU General Public License as published by 671239cb6SGreg Roach * the Free Software Foundation, either version 3 of the License, or 771239cb6SGreg Roach * (at your option) any later version. 871239cb6SGreg Roach * This program is distributed in the hope that it will be useful, 971239cb6SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 1071239cb6SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1171239cb6SGreg Roach * GNU General Public License for more details. 1271239cb6SGreg Roach * You should have received a copy of the GNU General Public License 1371239cb6SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 1471239cb6SGreg Roach */ 1571239cb6SGreg Roach 1671239cb6SGreg Roachimport $ from "jquery"; 1771239cb6SGreg Roachwindow.$ = window.jQuery = $; 1871239cb6SGreg Roach 1971239cb6SGreg Roachimport "popper.js"; 2071239cb6SGreg Roachimport "bootstrap"; 2171239cb6SGreg Roachimport "datatables.net"; 2271239cb6SGreg Roach 2371239cb6SGreg Roachwindow.Bloodhound = require("corejs-typeahead/dist/bloodhound.min.js"); 2471239cb6SGreg Roachimport "corejs-typeahead"; 2571239cb6SGreg Roach 2671239cb6SGreg Roachimport "datatables.net-bs4"; 2771239cb6SGreg Roach 2871239cb6SGreg Roach// See https://github.com/RubaXa/Sortable/issues/1229 29*75b444f7SGreg Roach//window.Sortable = require('sortablejs'); 30*75b444f7SGreg Roachimport Sortable from 'sortablejs'; 31*75b444f7SGreg Roachwindow.Sortable = Sortable; 3271239cb6SGreg Roach 3371239cb6SGreg Roachimport "select2"; 34bdbdb10cSGreg Roach//import "select2/dist/js/i18n/*.js"; 35bdbdb10cSGreg Roach 36bdbdb10cSGreg Roachimport "select2/dist/js/i18n/af.js"; 37bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ar.js"; 38bdbdb10cSGreg Roachimport "select2/dist/js/i18n/az.js"; 39bdbdb10cSGreg Roachimport "select2/dist/js/i18n/bg.js"; 40bdbdb10cSGreg Roachimport "select2/dist/js/i18n/bn.js"; 41bdbdb10cSGreg Roachimport "select2/dist/js/i18n/bs.js"; 42bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ca.js"; 43bdbdb10cSGreg Roachimport "select2/dist/js/i18n/cs.js"; 44bdbdb10cSGreg Roachimport "select2/dist/js/i18n/da.js"; 45bdbdb10cSGreg Roachimport "select2/dist/js/i18n/de.js"; 46bdbdb10cSGreg Roachimport "select2/dist/js/i18n/dsb.js"; 47bdbdb10cSGreg Roachimport "select2/dist/js/i18n/el.js"; 48bdbdb10cSGreg Roachimport "select2/dist/js/i18n/en.js"; 49bdbdb10cSGreg Roachimport "select2/dist/js/i18n/es.js"; 50bdbdb10cSGreg Roachimport "select2/dist/js/i18n/et.js"; 51bdbdb10cSGreg Roachimport "select2/dist/js/i18n/eu.js"; 52bdbdb10cSGreg Roachimport "select2/dist/js/i18n/fa.js"; 53bdbdb10cSGreg Roachimport "select2/dist/js/i18n/fi.js"; 54bdbdb10cSGreg Roachimport "select2/dist/js/i18n/fr.js"; 55bdbdb10cSGreg Roachimport "select2/dist/js/i18n/gl.js"; 56bdbdb10cSGreg Roachimport "select2/dist/js/i18n/he.js"; 57bdbdb10cSGreg Roachimport "select2/dist/js/i18n/hi.js"; 58bdbdb10cSGreg Roachimport "select2/dist/js/i18n/hr.js"; 59bdbdb10cSGreg Roachimport "select2/dist/js/i18n/hsb.js"; 60bdbdb10cSGreg Roachimport "select2/dist/js/i18n/hu.js"; 61bdbdb10cSGreg Roachimport "select2/dist/js/i18n/hy.js"; 62bdbdb10cSGreg Roachimport "select2/dist/js/i18n/id.js"; 63bdbdb10cSGreg Roachimport "select2/dist/js/i18n/is.js"; 64bdbdb10cSGreg Roachimport "select2/dist/js/i18n/it.js"; 65bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ja.js"; 66bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ka.js"; 67bdbdb10cSGreg Roachimport "select2/dist/js/i18n/km.js"; 68bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ko.js"; 69bdbdb10cSGreg Roachimport "select2/dist/js/i18n/lt.js"; 70bdbdb10cSGreg Roachimport "select2/dist/js/i18n/lv.js"; 71bdbdb10cSGreg Roachimport "select2/dist/js/i18n/mk.js"; 72bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ms.js"; 73bdbdb10cSGreg Roachimport "select2/dist/js/i18n/nb.js"; 74bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ne.js"; 75bdbdb10cSGreg Roachimport "select2/dist/js/i18n/nl.js"; 76bdbdb10cSGreg Roachimport "select2/dist/js/i18n/pl.js"; 77bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ps.js"; 78bdbdb10cSGreg Roachimport "select2/dist/js/i18n/pt-BR.js"; 79bdbdb10cSGreg Roachimport "select2/dist/js/i18n/pt.js"; 80bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ro.js"; 81bdbdb10cSGreg Roachimport "select2/dist/js/i18n/ru.js"; 82bdbdb10cSGreg Roachimport "select2/dist/js/i18n/sk.js"; 83bdbdb10cSGreg Roachimport "select2/dist/js/i18n/sl.js"; 84bdbdb10cSGreg Roachimport "select2/dist/js/i18n/sq.js"; 85bdbdb10cSGreg Roachimport "select2/dist/js/i18n/sr-Cyrl.js"; 86bdbdb10cSGreg Roachimport "select2/dist/js/i18n/sr.js"; 87bdbdb10cSGreg Roachimport "select2/dist/js/i18n/sv.js"; 88bdbdb10cSGreg Roachimport "select2/dist/js/i18n/th.js"; 89bdbdb10cSGreg Roachimport "select2/dist/js/i18n/tk.js"; 90bdbdb10cSGreg Roachimport "select2/dist/js/i18n/tr.js"; 91bdbdb10cSGreg Roachimport "select2/dist/js/i18n/uk.js"; 92bdbdb10cSGreg Roachimport "select2/dist/js/i18n/vi.js"; 93bdbdb10cSGreg Roachimport "select2/dist/js/i18n/zh-CN.js"; 94bdbdb10cSGreg Roachimport "select2/dist/js/i18n/zh-TW.js"; 9571239cb6SGreg Roach 96510d3f2fSGreg Roachimport "hideshowpassword"; 97510d3f2fSGreg Roach 9871239cb6SGreg Roachimport "moment"; 9971239cb6SGreg Roach 10071239cb6SGreg Roachimport "jquery-colorbox"; 10171239cb6SGreg Roach 10271239cb6SGreg Roachimport "wheelzoom"; 10371239cb6SGreg Roach 10471239cb6SGreg Roachimport "leaflet"; 10571239cb6SGreg Roachimport "leaflet-providers"; 10671239cb6SGreg Roachwindow.GeoSearch = require("leaflet-geosearch"); 10771239cb6SGreg Roachimport "leaflet.markercluster"; 10871239cb6SGreg Roachimport "beautifymarker"; 109