Skip to content

Commit

Permalink
Bring back image support
Browse files Browse the repository at this point in the history
  • Loading branch information
yury committed Feb 2, 2018
1 parent 3daa95b commit e22448c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Resources/term.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ hterm.Terminal.IO.prototype.sendString = function(string) {
_postMessage('sendString', { string });
};

hterm.msg = function() {}; // TODO: show messages

function _colorComponents(colorStr) {
if (!colorStr) {
return [0, 0, 0]; // Default is black
Expand All @@ -75,7 +77,7 @@ function term_setupDefaults() {
term_set('copy-on-select', false);
term_set('audible-bell-sound', '');
term_set('receive-encoding', 'raw'); // we are UTF8
// term_set('allow-images-inline', true); // need to make it work
term_set('allow-images-inline', true); // need to make it work
}

function term_setup() {
Expand Down

0 comments on commit e22448c

Please sign in to comment.