Created
November 25, 2015 01:48
-
-
Save kentcdodds/4fcc17f761b3dd9fdb63 to your computer and use it in GitHub Desktop.
ng-nebraska talk files - Directives - The Importance of Learning JavaScript and staying Marketable
This file contains 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
import translations from 'my-translation-module' | |
angular.module('emojiApp') | |
.factory('emojiChooser', emojiChooser) | |
function emojiChooser() { | |
return { | |
template: ` | |
<div> | |
${translations('some.translation.key')} | |
<!-- more stuff --> | |
</div> | |
`, | |
// more stuff | |
} | |
} | |
This file contains 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('emojiApp') | |
.factory('emojiChooser', emojiChooser) | |
function emojiChooser() { | |
return { | |
template: ` | |
<div> | |
{{::'some.translation.key' | translate}} | |
<!-- more stuff --> | |
</div> | |
`, | |
// more stuff | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment