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

v0.3.0

Compare
Choose a tag to compare
@l-lin l-lin released this 22 Nov 14:57
· 504 commits to master since this release

This release contains the following:

  • Add the possibility to use AjaxDataProp for promises #111
$scope.dtOptions = DTOptions.fromFnPromise(function() {
        return $resource('data.json').query().$promise;
    })
    .withDataProp('data');
  • Loading DT options with a promise #113
$scope.dtOptions = $resource('/angular-datatables/dtOptions.json').get().$promise;
$scope.dtColumns = $resource('/angular-datatables/dtColumns.json').query().$promise;
  • Correct documentation
  • Support Angular 1.3 #97 #110