UNPKG

@webwriter/geogebra

Version:

Use the mathematics learning apps of GeoGebra for algebra and geometry.

20 lines (18 loc) 549 B
import {html, css} from "lit" import {LitElementWw} from "@webwriter/lit" import {customElement} from "lit/decorators.js" import { GeogebraApp } from "../components/geogebra-app" @customElement("webwriter-geogebra") export class WebwriterGeogebra extends GeogebraApp { type = "suite" as const showZoomButtons = true showFullscreenButton = true showMenuBar = true enableFileFeatures = false enableUndoRedo = false ggbStyles = css` .button.undo, .button.redo { display: none !important; } `.cssText }