Skip to content

Instantly share code, notes, and snippets.

@himinseop
Created December 21, 2016 12:51
Show Gist options
  • Save himinseop/ea74a116fc2e1e77f59b243c81ebbea4 to your computer and use it in GitHub Desktop.
Save himinseop/ea74a116fc2e1e77f59b243c81ebbea4 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