Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 1023631 - [collections] Smart collections should still display ev…
Browse files Browse the repository at this point in the history
…en if we cannot fetch the background image r=lightsofapollo
  • Loading branch information
KevinGrandon committed Jun 12, 2014
1 parent 6aa07ea commit 59b4bd6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/collection/js/view_collection.js
Expand Up @@ -80,7 +80,10 @@
} else {
// TODO show default image?
}
}, error)
}, function() {
// Bug 1023631 - Do not fail when BGImage can't be loaded
// TODO show default image?
})
.catch(fail);
}

Expand Down

0 comments on commit 59b4bd6

Please sign in to comment.