eburi
eburi
Same in 7.0.1. I think this is a bug. It only seems to affect you if you happen to use a type in a union for the first time.
I have the same issue: It's not consistent and seems to be a timing issue. Added a timeout between configuration an setting data (which is in my case very fast...
Sorry, forgot the version From bower.json: "dependencies": { "jquery": "~2.1.1", "bootstrap": "~3.3.4", "angular-animate": "~1.4", "angular-cookies": "~1.4", "angular-touch": "~1.4", "angular-sanitize": "~1.4", "angular-resource": "~1.4", "angular-bootstrap": "0.13.x", "angular": "~1.4", "angular-ui-grid": "~3.0.1", "fuse": "~1.2.2",...
Just updated to 3.0.3 - same issue
I upgraded to 3.0.5, still same issue. My fix: ``` javascript return $scope.resource.query(queryOptions).$promise.then(function(data) { $scope.gridOptions.data = data; $scope.loading = false; return $timeout(1); }) .then(function() { $scope.gridApi.core.handleWindowResize(); }) ```
Here's an example that will currently yield a warning. ``` itAsync('should not load the item from delegate', function () { var loadFromBackendMock = jasmine.createSpy('loadFromBackendMock').and.returnValue($q.when()); var cachingStrategy = SimpleCacheStrategyFactory.create(CacheIndexDbService.getResolverFor('store'), loadFromBackendMock); return...
There is an easy workaround: require('later/later.js');
As mentioned before, you can just require the file that works (later/later.js). If you want to keep your code 'clean' of such workarounds, in webpack 2 you can also define...
There is a function named `eachKeyLike` in pact-js, but currently it has some issues. See also https://github.com/pact-foundation/pact-js/issues/1077 and referenced issues.