angular-data-table icon indicating copy to clipboard operation
angular-data-table copied to clipboard

Adding Angular 1.6 support

Open jonshaffer opened this issue 9 years ago • 2 comments

Accounting for lack of $onInit callback in 1.4 #252

jonshaffer avatar Dec 16 '16 17:12 jonshaffer

Using basic.html as an example you can test angular 1.6 using this branch locally by:

  1. Update systemjs angular to 1.6
  2. Update related demo $http as follows:
$http.get('/demos/data/100.json').success(function(data) {
  $scope.data = data;
});

to

$http.get('/demos/data/100.json').then(function(response) {
  $scope.data = response.data;
});

jonshaffer avatar Dec 16 '16 17:12 jonshaffer

Couldn't this be merged? This would help a lot of people to use this library.

reinfi avatar Jan 09 '18 10:01 reinfi