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
| module.run(($mdColorPalette, $mdTheming) => { | |
| const { THEMES } = $mdTheming; | |
| const rules = []; | |
| for (const themeName in THEMES) { | |
| const { colors } = THEMES[themeName]; | |
| const themeCls = themeName == 'default' ? '' : `.md-${ themeName }-theme`; |
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
| // CLASS DECORATORS //////////////////////////////////////////////////////////// | |
| /* | |
| These can be thrown on to augment the class with the static properties method | |
| and $arguments, which makes it possible to generically attach them to an | |
| angular module without the angular module "directory" file needing to know any | |
| particulars about the individual providers: | |
| import hnAuth from './services/hn-auth'; |
NewerOlder