Skip to content

Commit d4938b6

Browse files
committed
fixed issues reported by jsHint
1 parent 73d6bc0 commit d4938b6

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

quick-start/src/main/resources/static/app/services/dataHubService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
.success(function (status) {
123123
self.status = status;
124124
self.displayMessage('New entity is created successfully.', 'success', 'notification', false);
125-
})
125+
});
126126
}
127127

128128
function displayEntity(entityName) {

quick-start/src/main/resources/static/app/services/modalService.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
function ModalService($uibModal) {
1212
var self = this;
1313
angular.extend(self, {
14-
openLoadDataModal: openLoadDataModal
15-
,openEntityModal: openEntityModal
16-
,openFlowModal: openFlowModal
14+
openLoadDataModal: openLoadDataModal,
15+
openEntityModal: openEntityModal,
16+
openFlowModal: openFlowModal
1717
});
1818

1919
function openLoadDataModal() {
@@ -53,11 +53,11 @@
5353
resolve : {
5454
'entityName' : function () {
5555
return entityName;
56-
}
57-
,'flowType' : function () {
56+
},
57+
'flowType' : function () {
5858
return flowType;
59-
}
60-
,'extension' : function () {
59+
},
60+
'extension' : function () {
6161
return extension;
6262
}
6363
}
@@ -113,10 +113,10 @@
113113

114114
function FlowModalController($scope, $uibModalInstance, DataHub, entityName, flowType, extension) {
115115
$scope.flowForm = {
116-
'entityName' : entityName
117-
,'flowType' : flowType
118-
,'extension' : extension
119-
};
116+
'entityName' : entityName,
117+
'flowType' : flowType,
118+
'extension' : extension
119+
};
120120
$scope.errorMessage =null;
121121
$scope.hasError = false;
122122

0 commit comments

Comments
 (0)