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

index.js - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 179f82234fff69f25e1c2d88904022aa5ebcd16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var App = require('./lib/app')
var TorrentManager = require('./lib/torrent-manager')

if (window.name === 'app') {
  new App(window.torrentManager)
} else {
  new TorrentManager()
}