1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 09:39:16 +02:00

Move all archive-related files into a subdirectory called archive

This commit is contained in:
codedread 2017-02-19 09:49:06 -08:00
parent 17404501e5
commit 19af90a27f
5 changed files with 7 additions and 7 deletions

View file

@ -203,7 +203,7 @@ bitjs.archive.Unarchiver = function(arrayBuffer, opt_pathToBitJS) {
* @type {string} * @type {string}
* @private * @private
*/ */
this.pathToBitJS_ = opt_pathToBitJS || ''; this.pathToBitJS_ = opt_pathToBitJS || '/';
/** /**
* A map from event type to an array of listeners. * A map from event type to an array of listeners.

View file

@ -8,8 +8,8 @@
*/ */
// This file expects to be invoked as a Worker (see onmessage below). // This file expects to be invoked as a Worker (see onmessage below).
importScripts('io/bitstream.js'); importScripts('../io/bitstream.js');
importScripts('io/bytebuffer.js'); importScripts('../io/bytebuffer.js');
importScripts('archive.js'); importScripts('archive.js');
importScripts('rarvm.js'); importScripts('rarvm.js');

View file

@ -11,7 +11,7 @@
*/ */
// This file expects to be invoked as a Worker (see onmessage below). // This file expects to be invoked as a Worker (see onmessage below).
importScripts('io/bytestream.js'); importScripts('../io/bytestream.js');
importScripts('archive.js'); importScripts('archive.js');
// Progress variables. // Progress variables.

View file

@ -13,9 +13,9 @@
*/ */
// This file expects to be invoked as a Worker (see onmessage below). // This file expects to be invoked as a Worker (see onmessage below).
importScripts('io/bitstream.js'); importScripts('../io/bitstream.js');
importScripts('io/bytebuffer.js'); importScripts('../io/bytebuffer.js');
importScripts('io/bytestream.js'); importScripts('../io/bytestream.js');
importScripts('archive.js'); importScripts('archive.js');
// Progress variables. // Progress variables.