Unverified Commit 3a8b81c5 authored by Scott Ames's avatar Scott Ames Committed by GitHub
Browse files

Delete FullScreenMenu.js

parent 6ddbb2f9
Loading
Loading
Loading
Loading

app/src/js/FullScreenMenu.js

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
import "leaflet";
import "leaflet-sidebar-v2";
import "../assets/fontawesome/all.js";

var panelContent = {
  id: "home",
  tab: '<i class="fa fa-home"></i>',
  title: "Your Profile",
  position: "bottom" //
};

/**
 * @class FullScreenMenu
 * @aka L.Control
 * Class that adds menu container from L.control.
 */
export let FullScreenMenu = L.control
  .sidebar({
    container: "fs-menu-container"
  })
  .addPanel(panelContent);