Created
October 26, 2014 14:35
-
-
Save xcarpentier/5c6cd258257adfe13f2f 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
// à l'intérieure de la définition d'une directive | |
function outer() { | |
return { | |
controller: DashboardPanel, | |
}; | |
DashboardPanel.$inject = ['logger']; // l'injection ne fonctionne pas après le return | |
function DashboardPanel(logger) { | |
} | |
} | |
// à l'intérieure de la définition d'une directive | |
function outer() { | |
DashboardPanel.$inject = ['logger']; // injection réussie | |
return { | |
controller: DashboardPanel, | |
}; | |
function DashboardPanel(logger) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment