Skip to content

Commit

Permalink
Fix missing lodash dependency
Browse files Browse the repository at this point in the history
I found that the sample request is not working, since lodash was missing. Fixed.
  • Loading branch information
alqu authored Jan 16, 2017
1 parent 25ec6f0 commit a9578c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions template/utils/send_sample_request.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
define([
'jquery'
], function($) {
'jquery',
'lodash'
], function($, _) {

var initDynamic = function() {
// Button send
Expand Down

0 comments on commit a9578c4

Please sign in to comment.