(tmpl)
| 752 | } |
| 753 | |
| 754 | function loadTemplate (tmpl) { |
| 755 | if (!tmpl) { |
| 756 | return 'Empty template'; |
| 757 | } |
| 758 | |
| 759 | if (angular.isString(tmpl) && options.plain) { |
| 760 | return tmpl; |
| 761 | } |
| 762 | |
| 763 | if (typeof options.cache === 'boolean' && !options.cache) { |
| 764 | return loadTemplateUrl(tmpl, {cache: false}); |
| 765 | } |
| 766 | |
| 767 | return loadTemplateUrl(tmpl, {cache: $templateCache}); |
| 768 | } |
| 769 | }, |
| 770 | |
| 771 | /* |
no test coverage detected