In your command-line run the following commands:
brew doctor
brew update
In your command-line run the following commands:
brew doctor
brew update
(function() { | |
Backbone.Events.autorun = function(f, context) { | |
if (!this.__autorunHandles) this.__autorunHandles = []; | |
var backboneContext = this; | |
var handle = Tracker.autorun(function() { | |
Tracker.currentComputation.__backboneContext = backboneContext; | |
f(); | |
}); | |
this.__autorunHandles.push(handle); | |
return handle; |