Skip to content

Commit 4237b27

Browse files
committed
Used angular.forEach instead of jQuery's $.each
1 parent 3dd54b5 commit 4237b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quick-start/src/main/resources/static/app/mlcp/mlcp.groups.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@
238238
}
239239
];
240240
angular.forEach(previousOptions, function(value, key) {
241-
$.each(groups, function(i, group) {
242-
$.each(group.settings, function(i, setting) {
241+
angular.forEach(groups, function(group) {
242+
angular.forEach(group.settings, function(setting) {
243243
if (setting.field === key) {
244244
setting.value = value.replace(/"/g, '');
245245
}

0 commit comments

Comments
 (0)