Skip to content

Commit fea6b5f

Browse files
committed
Removing unnecessary semicolon
1 parent 6320ba9 commit fea6b5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/js/igniteui-sample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ app.controller('gridController',
2020
// only needed until https://github.com/angular/angular.js/issues/6683 is resolved
2121
for (var i = 0; i < northwind.data.length; i++) {
2222
northwind.data[i].UnitPrice = parseFloat(northwind.data[i].UnitPrice);
23-
};
23+
}
2424
$scope.northwind = northwind.data;
2525

2626
var createNewProduct = function () {

src-samples/src/js/igniteui-sample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ app.controller('gridController',
2020
// only needed until https://github.com/angular/angular.js/issues/6683 is resolved
2121
for (var i = 0; i < northwind.data.length; i++) {
2222
northwind.data[i].UnitPrice = parseFloat(northwind.data[i].UnitPrice);
23-
};
23+
}
2424
$scope.northwind = northwind.data;
2525

2626
var createNewProduct = function () {

0 commit comments

Comments
 (0)