You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Due to #285, the context-menu.js require was added).
I've also configured my app to run in strict-di mode (ng-strict-di / 'use strict';)
However, strict-di mode mode causes a $injector:strictdi error for angular-tree-control. This is due to $parse not beeing explicitly annotated in the angular-tree-control directive treeRightClick. Although, it is explicitly annotated in the setNodeToData directive.
I'm running AngularJS 1.6.10 with Webpack 4.6.0. In my main app-file I'm loading angular-tree-control thus:
(Due to #285, the context-menu.js require was added).
I've also configured my app to run in strict-di mode (ng-strict-di / 'use strict';)
However, strict-di mode mode causes a $injector:strictdi error for angular-tree-control. This is due to $parse not beeing explicitly annotated in the angular-tree-control directive treeRightClick. Although, it is explicitly annotated in the setNodeToData directive.
Correct:
.directive("setNodeToData", ['$parse', function($parse) {
Incorrect:
.directive('treeRightClick', function($parse) {
---> should be:
.directive('treeRightClick', ['$parse', function($parse) {
The text was updated successfully, but these errors were encountered: