Skip to content

Commit

Permalink
Add underscore as dependency to quote.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartlomiejsz committed Jun 16, 2016
1 parent 3561b66 commit 39ec4d4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/code/Magento/Checkout/view/frontend/web/js/model/quote.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
* See COPYING.txt for license details.
*/
define(
['ko'],
function (ko) {
[
'ko',
'underscore'
],
function (
ko,
_
) {
'use strict';
var billingAddress = ko.observable(null);
var shippingAddress = ko.observable(null);
Expand Down

0 comments on commit 39ec4d4

Please sign in to comment.