Add shims in bootstrap script

This commit is contained in:
Kevin Sawicki
2013-10-14 16:19:09 -07:00
parent 667e0929b6
commit 0db962b94f
2 changed files with 5 additions and 4 deletions

View File

@@ -2,10 +2,6 @@
{Document, Point, Range, Site} = require 'telepath'
{Emitter, Subscriber} = require 'emissary'
#FIXME remove once all packages have been updated
Emitter::trigger = (args...) => @emit(args...)
Emitter::subscriptionCount = (args...) => @getSubscriptionCount(args...)
module.exports =
_: require '../src/underscore-extensions'
$: require '../src/jquery-extensions'

View File

@@ -1,6 +1,11 @@
# Like sands through the hourglass, so are the days of our lives.
startTime = new Date().getTime()
#FIXME remove once all packages have been updated
{Emitter} = require 'emissary'
Emitter::trigger = (args...) => @emit(args...)
Emitter::subscriptionCount = (args...) => @getSubscriptionCount(args...)
require './window'
Atom = require './atom'