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
I want to decorate the directive with default options, but the decorator CB never fires. I have other directives I'm decorating in the same way and they do work.
Any ideas?
Thanks for the awesome project!
angular.module('myModule',['summernote']).config(["$provide",function($provide){console.log("$provide");// this logs$provide.decorator("summernoteDirective",["$delegate",function($delegate){console.log("$delegate",$delegate);// doesn't log// decorate with defaultsreturn$delegate;},]);},])
The text was updated successfully, but these errors were encountered:
I want to decorate the directive with default options, but the decorator CB never fires. I have other directives I'm decorating in the same way and they do work.
Any ideas?
Thanks for the awesome project!
The text was updated successfully, but these errors were encountered: