Merge pull request #17 from sourcelair/issue/8

Bump to v0.29
This commit is contained in:
Paris Kasidiaris
2015-01-19 19:45:19 +02:00
4 changed files with 17 additions and 14 deletions
+1 -1
View File
@@ -14,6 +14,6 @@ If you contribute code to this project, you are implicitly allowing your code to
## License
Copyright (c) 2014, SourceLair, Ltd (www.sourcelair.com) (MIT License)
Copyright (c) 2014-2015, SourceLair, Ltd (www.sourcelair.com) (MIT License)
Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
+1 -1
View File
@@ -17,7 +17,7 @@ term.prompt();
term.on('key', function (key, ev) {
var printable = (!ev.altKey && !ev.altGraphKey && !ev.ctrlKey && !ev.metaKey);
if (ev.keyIdentifier == 'Enter') {
if (ev.keyCode == 13) {
term.prompt();
} else if (ev.keyCode == 8) {
/*
+3 -3
View File
@@ -44,16 +44,16 @@ master_doc = 'index'
# General information about the project.
project = u'xterm.js'
copyright = u'2014, SourceLair Limited'
copyright = u'2015, SourceLair Limited'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.28'
version = '0.29'
# The full version, including alpha/beta/rc tags.
release = '0.28 Alpha'
release = '0.29 Alpha'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+12 -9
View File
@@ -32,28 +32,31 @@
*/
/*
* Default style for xterm.js
*/
* Default style for xterm.js
*/
.xterm {
.terminal {
background-color: #000;
color: #fff;
outline: none;
font-family: courier-new, courier, monospace;
position: relative;
}
.xterm .terminal-cursor {
.terminal:focus {
outline: none;
}
.terminal .terminal-cursor {
background-color: #fff;
color: #000;
}
.xterm .xterm-helpers {
.terminal .xterm-helpers {
position: absolute;
top: 0;
}
.xterm .xterm-helper-textarea {
.terminal .xterm-helper-textarea {
opacity: 0;
width: 0;
height: 0;
@@ -61,8 +64,8 @@
}
/*
* Determine default colors for xterm.js
*/
* Determine default colors for xterm.js
*/
.terminal .xterm-bold {
font-weight: bold;
}