aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/demos/editor/equationeditor.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/demos/editor/equationeditor.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/demos/editor/equationeditor.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/demos/editor/equationeditor.html b/contexts/data/lib/closure-library/closure/goog/demos/editor/equationeditor.html
deleted file mode 100644
index 8b78f59..0000000
--- a/contexts/data/lib/closure-library/closure/goog/demos/editor/equationeditor.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright 2010 The Closure Library Authors. All Rights Reserved.
-
-Use of this source code is governed by the Apache License, Version 2.0.
-See the COPYING file for details.
--->
-<head>
-<title>Equation Editor Test</title>
-<script src="../../base.js"></script>
-<script src="deps.js"></script>
-<script>
- goog.require('goog.demos.editor.EquationEditor');
-</script>
-<link rel="stylesheet" href="../css/demo.css">
-<link rel="stylesheet" href="../../css/dialog.css" />
-<link rel="stylesheet" href="../../css/editor/equationeditor.css" />
-</head>
-
-<body>
-
-<a href="#" onclick="openEditor()">Open Editor Dialog</a>
-&nbsp;&nbsp;
-Initial equation:
-<input type="text" value="" id="init">
-
-<script>
-
-function openEditor() {
- var ed = new goog.demos.editor.EquationEditor();
- ed.openEditor(document.getElementById('init').value);
-}
-</script>
-</body>
-</html>