mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Loading is now visibly more janky, but I think
d3ba5b8111
fixes a lot of our problems.
I tested this on split-panes-2.0 and a major bug (no input
after resizing) is now gone. Poof.
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
/*!
|
|
* async.js
|
|
* Copyright(c) 2010 Fabian Jakobs <fabian.jakobs@web.de>
|
|
* MIT Licensed
|
|
*/
|
|
|
|
define(function(require, exports, module) {
|
|
|
|
module.exports = require("./async")
|
|
module.exports.test = require("./test")
|
|
require("./utils")
|
|
|
|
}) |