Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit b5833ed

Browse files
committed
Add RendererFactory in other file + Update version to v0.1.0
1 parent 565c10c commit b5833ed

9 files changed

+644
-622
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-datatables",
3-
"version": "0.0.4",
3+
"version": "0.1.0",
44
"author": "l-lin",
55
"main": [
66
"dist/angular-datatables.js",

demo/angularWayDataChange.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@
2828
$scope.person2Add = _buildPerson2Add($scope.person2Add.id + 1);
2929
};
3030
$scope.editPerson = function ($index) {
31+
console.log('editPerson');
3132
// BEWARE: $scope.persons[$index] = $scope.person2Add; does not work!
3233
$scope.persons[$index].id = $scope.person2Add.id;
3334
$scope.persons[$index].firstName = $scope.person2Add.firstName;
3435
$scope.persons[$index].lastName = $scope.person2Add.lastName;
3536
};
3637
$scope.removePerson = function ($index) {
38+
console.log('removePerson');
3739
$scope.persons.splice($index, 1);
3840
};
3941
});

0 commit comments

Comments
 (0)