Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def compress_source(target, srcls):
compress_source(
'lib/glkote.min.js', [
'src/prototype-1.6.1.js',
'src/audiofile.js',
'src/glkote/glkote.js',
'src/glkote/dialog.js',
'src/glkote/glkapi.js',
Expand Down
201 changes: 152 additions & 49 deletions lib/glkote.min.js

Large diffs are not rendered by default.

30 changes: 22 additions & 8 deletions lib/quixe.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions media/glkote.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,36 @@
padding: 6px 10px 6px 10px;
}

.BufferWindow img.image-floated-left {
display: block;
float: left;
}
.BufferWindow img.image-floated-right {
display: block;
float: right;
}

.BufferWindow img.image-inline-top {
vertical-align: top;
}
.BufferWindow img.image-inline-middle {
vertical-align: middle;
}
.BufferWindow img.image-inline-bottom {
vertical-align: bottom;
}

.float-clear {
/* Special "clear floats" token. This isn't supposed to break the text when
* there's nothing to clear, but alas, CSS clear only works on blocks.
* Hopefully nobody wants to clear except at the start of a line anyway.
*/
display: block;
height: 0;
width: 0;
clear: both;
}

.BufferLine {
}

Expand All @@ -72,6 +102,10 @@
white-space: pre; /* required for spaces to work right */
}

.GraphicsWindow {
overflow: hidden;
}

.InvisibleCursor {
/* This provides the padding below the last line of text (and the input
prompt). Without this, they'd be flush against the bottom of the
Expand Down
1 change: 1 addition & 0 deletions play-full.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<script src="src/glkote/glkote.js" type="text/javascript"></script>
<script src="src/glkote/dialog.js" type="text/javascript"></script>
<script src="src/glkote/glkapi.js" type="text/javascript"></script>
<script src="src/audiofile.js" type="text/javascript"></script>
<script src="src/quixe/quixe.js" type="text/javascript"></script>
<script src="src/quixe/gi_dispa.js" type="text/javascript"></script>
<script src="src/quixe/gi_load.js" type="text/javascript"></script>
Expand Down
1 change: 1 addition & 0 deletions play-remote-full.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<script src="src/glkote/glkote.js" type="text/javascript"></script>
<script src="src/glkote/dialog.js" type="text/javascript"></script>
<script src="src/glkote/glkapi.js" type="text/javascript"></script>
<script src="src/audiofile.js" type="text/javascript"></script>
<script src="src/quixe/quixe.js" type="text/javascript"></script>
<script src="src/quixe/gi_dispa.js" type="text/javascript"></script>
<script src="src/quixe/gi_load.js" type="text/javascript"></script>
Expand Down
Loading