Welcome to mirror list, hosted at ThFree Co, Russian Federation.

terminal_bundle.js « terminal « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 134522ef96107b326e56bc9002ef2040cb2bea97 (plain)
1
2
3
4
5
6
7
8
9
import 'vendor/xterm/encoding-indexes';
import 'vendor/xterm/encoding';
import Terminal from 'vendor/xterm/xterm';
import 'vendor/xterm/fit';
import './terminal';

window.Terminal = Terminal;

$(() => new gl.Terminal({ selector: '#terminal' }));