Skip to content

Commit

Permalink
url -> assetUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
joscha authored Jun 28, 2017
1 parent a9d88cf commit be7625a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/react/src/server/iframe.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const urlsFromAssets = assets => {
if (!Array.isArray(assetList)) {
assetList = [assetList];
}
assetList.filter(url => re.exec(url)[1] !== 'map').forEach(url => {
urls[re.exec(url)[1]].push(url);
assetList.filter(assetUrl => re.exec(assetUrl)[1] !== 'map').forEach(assetUrl => {
urls[re.exec(assetUrl)[1]].push(assetUrl);
});
});

Expand Down

0 comments on commit be7625a

Please sign in to comment.