-
-
Save Niladri24dutta/4ea93d12e56c11fd377c8b8b69472556 to your computer and use it in GitHub Desktop.
angular-ui-grid with angular-1.6x bug fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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