UNPKG

@swan-cern/hdfsbrowser

Version:

Jupyterlab extension to browse HDFS filesystem

18 lines (17 loc) 391 B
import { IFrame } from '@jupyterlab/apputils'; /** * A class that exposes the git plugin Widget. */ export class HdfsBrowserWidget extends IFrame { /** * Construct a console panel. */ constructor() { super(); this.sandbox = [ 'allow-same-origin', 'allow-scripts' ]; this.url = "/hdfsbrowser/explorer.html"; } }