Commit b00f53be authored by Mike Greiling's avatar Mike Greiling

fix relative paths to xterm.js within fit.js

parent 99f2e9a1
...@@ -16,12 +16,12 @@ ...@@ -16,12 +16,12 @@
/* /*
* CommonJS environment * CommonJS environment
*/ */
module.exports = fit(require('../../xterm')); module.exports = fit(require('./xterm'));
} else if (typeof define == 'function') { } else if (typeof define == 'function') {
/* /*
* Require.js is available * Require.js is available
*/ */
define(['../../xterm'], fit); define(['./xterm'], fit);
} else { } else {
/* /*
* Plain browser environment * Plain browser environment
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment