fix incorrect .bind() causing an undefined crash when prelaunching sim (cc @Jonahss)

This commit is contained in:
Jonathan Lipps 2015-04-28 15:00:18 -05:00
Родитель 128ab2c6dc
Коммит 9bc59cfe94
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1248,7 +1248,7 @@ IOS.prototype.prelaunchSimulator = function (cb) {
waitForSimulatorLogs(10);
}.bind(this));
}).bind(this);
}.bind(this));
};
IOS.prototype.parseLocalizableStrings = function (/* language, stringFile, cb */) {