Last active
July 10, 2017 20:34
-
-
Save crissilvaeng/d9a2244a6b537627d006f6381897bd31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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