Merge branch 'master' of git@github.com:zalun/FlightDeck

This commit is contained in:
Piotr Zalewa 2010-03-09 12:07:39 +00:00
Родитель b95f343e6b 35a6b3d843
Коммит ba821c410d
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -50,7 +50,12 @@ var Jetpack = new Class({
method: 'post',
data: data,
onSuccess: function(response) {
fd.message.alert('Debug','XPI created - sending data to Fd addon\n'+response.get_xpi_url);
if (response.stderr) {
fd.error.alert('Error',response.stderr);
$log(response);
return;
}
fd.message.alert('Debug','XPI created - sending data to Fd addon');
// now call the add-on
$log(response);
this.install_xpi(response.get_xpi_url);