mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 01:17:18 +00:00
17 lines
No EOL
533 B
HTML
17 lines
No EOL
533 B
HTML
<script src="/lib/client/jquery.js"></script>
|
|
<script src="jquery.mousewheel.js"></script>
|
|
<script src="http://terminal.jcubic.pl/js/jquery.terminal-0.4.17.js"></script>
|
|
<link href="jquery.terminal.css" rel="stylesheet">
|
|
|
|
<div id='terminal'></div>
|
|
<script>
|
|
jQuery(function($, undefined) {
|
|
$('#terminal').terminal(function(command, term) {
|
|
term.echo('');
|
|
}, {
|
|
greetings: 'Javascript Interpreter',
|
|
name: 'js_demo',
|
|
height: 200,
|
|
prompt: 'js>'});
|
|
});
|
|
</script> |