I'm developing an extension for google chrome with angular.
Everything works fine, but when I want to use templateCache with ng-include, it tries to find the path inside the extension's folder and never looks in the templateCache.
<ng-include src = " 'ViewHTML' "></ng-include>
the code that I use to load the view in the templeCache ...
$templateCache.put("ViewHTML","<h1>Working</h1>");
I always use templateCache, but it only stops working when I try to use it with <ng-include>
the angle version used is 1.5.8