Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
fix(App): use var for production lazy load file arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
Thore3 committed Jun 29, 2016
1 parent da81220 commit 4db7204
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ angular.module('walletApp', modules)
// @endif

/* @if PRODUCTION **
const walletLazyLoadFiles = [
var walletLazyLoadFiles = [
'js/my-wallet.min.js',
'js/wallet.min.js'
];
const bcQrReaderLazyLoadFiles = [
var bcQrReaderLazyLoadFiles = [
'js/bc-qr-reader.min.js'
];
const bcPhoneNumberLazyLoadFiles = [
var bcPhoneNumberLazyLoadFiles = [
'js/bc-phone-number.min.js'
];
/* @endif */
Expand Down

0 comments on commit 4db7204

Please sign in to comment.