Browse Source

UI-2866: Migrate from underscore to lodash (#3)

* UI-2866: Reference lodash intead of underscore following migration

* UI-2866: Migrate underscore specific utils to lodash
UI-2978 4.2.0
Joris Tirado 8 years ago
committed by GitHub
parent
commit
c08bfba9e7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app.js

+ 2
- 2
app.js View File

@ -1,6 +1,6 @@
define(function(require) {
var $ = require('jquery'),
_ = require('underscore'),
_ = require('lodash'),
monster = require('monster'),
chosen = require('chosen'),
toastr = require('toastr');
@ -46,7 +46,7 @@ define(function(require) {
var self = this;
self.getFaxData(function(results) {
self.appFlags.faxboxes = _.indexBy(results.faxboxes, 'id');
self.appFlags.faxboxes = _.keyBy(results.faxboxes, 'id');
var menus = [
{


Loading…
Cancel
Save