Move some resource files to res/
2
bell.js
@ -28,7 +28,7 @@ if (typeof Bell !== 'function') {
|
|||||||
// Fallback for IE<9
|
// Fallback for IE<9
|
||||||
tag = document.createElement('bgsound');
|
tag = document.createElement('bgsound');
|
||||||
if ('loop' in tag) {
|
if ('loop' in tag) {
|
||||||
tag.src = base + 'bell.wav';
|
tag.src = base + 'res/bell.wav';
|
||||||
tag.loop = 1;
|
tag.loop = 1;
|
||||||
this.play = function() { document.body.appendChild(tag); };
|
this.play = function() { document.body.appendChild(tag); };
|
||||||
this.stop = function() { document.body.removeChild(tag); };
|
this.stop = function() { document.body.removeChild(tag); };
|
||||||
|
@ -14,10 +14,10 @@
|
|||||||
.jsb-tty .jsb-chr-cursor { position: relative; display: inline-block; }
|
.jsb-tty .jsb-chr-cursor { position: relative; display: inline-block; }
|
||||||
|
|
||||||
/* 40 Column Text */
|
/* 40 Column Text */
|
||||||
.jsb-40col .jsb-chr { background-image: url(font-40col.png); width: 14px; }
|
.jsb-40col .jsb-chr { background-image: url('res/font-40col.png'); width: 14px; }
|
||||||
|
|
||||||
/* 80 Column Text */
|
/* 80 Column Text */
|
||||||
.jsb-80col .jsb-chr { background-image: url(font-80col.png); width: 7px; }
|
.jsb-80col .jsb-chr { background-image: url('res/font-80col.png'); width: 7px; }
|
||||||
|
|
||||||
/* Lo-Res Graphics */
|
/* Lo-Res Graphics */
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
@ -21,7 +21,7 @@ h1, h2, h3, p, ul { margin-bottom: 0; margin-top: 0; }
|
|||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
font-family: Courier, Monospace;
|
font-family: Courier, Monospace;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
background-image: url('lpt.jpg');
|
background-image: url('res/lpt.jpg');
|
||||||
background-repeat: repeat-y;
|
background-repeat: repeat-y;
|
||||||
background-attachment: local;
|
background-attachment: local;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|