Fixed case issues.

This commit is contained in:
Clinton Alexander 2016-07-18 16:36:46 +01:00
parent 0a29ba4594
commit 912cccc5a4
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
'use strict';
define(['angular', 'lodash', 'viewmodel/deal'], (angular, _, dealViewModel) => {
define(['angular', 'lodash', 'viewmodel/Deal'], (angular, _, dealViewModel) => {
angular.module('irsViewer').factory('nodeService', ($http) => {
return new (function() {
let date = new Date(2016, 0, 1, 0, 0, 0);

View File

@ -1,6 +1,6 @@
'use strict';
define(['viewmodel/fixedLeg', 'viewmodel/floatingLeg', 'viewmodel/common'], (fixedLeg, floatingLeg, common) => {
define(['viewmodel/FixedLeg', 'viewmodel/FloatingLeg', 'viewmodel/Common'], (fixedLeg, floatingLeg, common) => {
return {
fixedLeg: fixedLeg,
floatingLeg: floatingLeg,