We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If you want to use the Pro Tip to load your templates with template cache you can simply do the following :
angular.module('ngDialog').run(['$templateCache', function ($templateCache) { $templateCache.put('default', "<div>\n" + "Test" + "</div>\n" + ""); }]);
If you load the $templateCache with the same ngDialog module then you don't have to load another module as dependency.