Skip to content

Instantly share code, notes, and snippets.

@crissilvaeng
Last active July 10, 2017 20:34
Show Gist options
  • Save crissilvaeng/d9a2244a6b537627d006f6381897bd31 to your computer and use it in GitHub Desktop.
Save crissilvaeng/d9a2244a6b537627d006f6381897bd31 to your computer and use it in GitHub Desktop.
angular.module('yourApp').run(['$templateCache', function($templateCache) {
$templateCache.put('directives/toast/toast.html',
"<div>Your template here</div>"
);
$templateCache.put('directives/progressbar/progressbar.html',
"<div>Your progressbar here</div>"
);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment