We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef07453 commit 5b93477Copy full SHA for 5b93477
editor.appcache
@@ -1,5 +1,5 @@
1
CACHE MANIFEST
2
-# 2012-09-3:1
+# 2012-09-3:2
3
4
CACHE:
5
/favicon.ico
index.html
@@ -71,8 +71,6 @@
71
<body>
72
<script>
73
74
- // https://github.com/mrdoob/code-editor
75
-
76
window.URL = window.URL || window.webkitURL;
77
78
// deflate
@@ -249,6 +247,16 @@
249
247
}, false );
250
248
toolbar.appendChild( buttonHide );
251
+ var buttonInfo = document.createElement( 'button' );
+ buttonInfo.className = 'button';
252
+ buttonInfo.textContent = '?';
253
+ buttonInfo.addEventListener( 'click', function ( event ) {
254
+
255
+ window.open( 'https://github.com/mrdoob/code-editor' );
256
257
+ }, false );
258
+ toolbar.appendChild( buttonInfo );
259
260
// events
261
262
document.addEventListener( 'drop', function ( event ) {
0 commit comments