Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
chore: rebuild dist
Browse files Browse the repository at this point in the history
Rebuilds dist.

-- tlvince/publish-dist
  • Loading branch information
fieldmachine committed Apr 3, 2017
1 parent c4a1b18 commit 78823b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions dist/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

var ThresholdsService = function () {
function ThresholdsService($q, smartId, lgasService, statesService, locationService) {
function ThresholdsService($q, smartId, lgasService, statesService, locationsService) {
_classCallCheck(this, ThresholdsService);

this.$q = $q;
this.smartId = smartId;
this.lgasService = lgasService;
this.statesService = statesService;
this.locationService = locationService;
this.locationsService = locationsService;
}

// For zones the thresholds are based on the state store required allocation for
Expand Down Expand Up @@ -332,12 +332,12 @@
var id = void 0;

if (scLocation.national) {
id = _this.smartId.idify(scLocation, 'national:?');
id = 'national';
index[id] = { date: stockCount.date };
index[id].type = 'national';

if (!promises.national) {
promises.national = _this.locationService.get('national');
promises.national = _this.locationsService.get('national');
}
} else {
id = _this.smartId.idify(scLocation, locationIdPattern);
Expand Down Expand Up @@ -382,7 +382,7 @@
return ThresholdsService;
}();

ThresholdsService.$inject = ['$q', 'smartId', 'lgasService', 'statesService', 'locationService'];
ThresholdsService.$inject = ['$q', 'smartId', 'lgasService', 'statesService', 'locationsService'];

angular.module('angularNavThresholds', ['angularNavData', 'ngSmartId']).service('thresholdsService', ThresholdsService);

Expand Down
2 changes: 1 addition & 1 deletion dist/bundle.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 78823b0

Please sign in to comment.