Created
December 21, 2016 12:51
-
-
Save himinseop/ea74a116fc2e1e77f59b243c81ebbea4 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