Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Niladri24dutta/4ea93d12e56c11fd377c8b8b69472556 to your computer and use it in GitHub Desktop.

Select an option

Save Niladri24dutta/4ea93d12e56c11fd377c8b8b69472556 to your computer and use it in GitHub Desktop.
angular-ui-grid with angular-1.6x bug fix
// fix : Possibly unhandled rejection: canceled
// for angularjs >= 1.6.0
// https://github.com/angular-ui/ui-grid/issues/5890
app.config(['$qProvider', function ($qProvider) {
$qProvider.errorOnUnhandledRejections(false);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment