Giter Club home page Giter Club logo

Comments (3)

eosterberg avatar eosterberg commented on August 19, 2024

Hi Gerhard, you need to use the .appendChild() method or the event handlers will be lost and the terminal node will be dead.

from terminaljs.

eosterberg avatar eosterberg commented on August 19, 2024

So the call should be:

document.getElementById("consoleBox").appendChild(t1.html);

In this case, .html property is actually a DOM object and not a html string. 'html' is actually a confusing property name, I may change that in the future.

from terminaljs.

GerhardKreuzer avatar GerhardKreuzer commented on August 19, 2024

Hi,

thanks.
Now I have another Problem.
I use AngularJS for Routing and something else and try to use the terminal.
How can I have a partial view using terminal.js?
My first idea writing a directive Fails, for what reason ever.

Here my code:

(function ()
{
var terminalDirective =
function ()
{
var directive = {};
directive.restrict = 'E';
var term = new Terminal();
/*
directive.template = '

...
'
/
term.print('Welcome');
directive.template = term.html;
/

directive.link = function($scope, element, attributes)
{
term.print('Welcome');
//term.input('Whats your name?', function (input) { term.print('Welcome, ' + input)});
console.log(term.html);
element.html(term.html);
}
*/
console.log(term.html);
return directive;
};
angular.module('geoHostApp').directive('console', terminalDirective);
}());

I always get some text: [object HTMLDivElement] instead of the terminal.

Any Chance to get it working?

Thanks a lot for helping

With best regards

Gerhard

from terminaljs.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.