UNPKG

core-resource-app-test

Version:

App that contains assets and scripts for the core apps

26 lines (23 loc) 577 B
/* Leaflet.contextmenu, a context menu for Leaflet. (c) 2015, Adam Ratcliffe, GeoSmart Maps Limited @preserve */ (function(factory) { // Packaging/modules magic dance var L; if (typeof define === 'function' && define.amd) { // AMD define(['leaflet'], factory); } else if (typeof module !== 'undefined') { // Node/CommonJS L = require('leaflet'); module.exports = factory(L); } else { // Browser globals if (typeof window.L === 'undefined') { throw new Error('Leaflet must be loaded first'); } factory(window.L); } })(function(L) {