Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
Fix image asset cache bust (bug 792346)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbasta committed Sep 20, 2012
1 parent 17bee5d commit dc92a6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/js/devreg/devhub.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function addonFormSubmit() {

// This exists because whoever wrote `imageStatus` didn't think there'd
// ever be anything besides icons and previews.
$('.image_preview_box .image img').each(function(el) {
$('.image_preview_box .image img').each(function(index, el) {
el.src = imageStatus.newurl(el.src);
});

Expand Down

0 comments on commit dc92a6d

Please sign in to comment.