Last active
August 29, 2015 14:20
-
-
Save stewones/5b90e41b6d7e27ad2e0a to your computer and use it in GitHub Desktop.
nested funcions
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
| 'use strict'; | |
| class FinderCtrl { | |
| /*@ngInject*/ | |
| constructor() { | |
| if (!UserFactory.isAuthed()) return; | |
| var vm = this; | |
| // | |
| // SEO | |
| // | |
| layout.setTitle(setting.title); | |
| layout.setDescription(setting.description); | |
| // | |
| // Events | |
| // | |
| // | |
| // Watchers | |
| // | |
| // | |
| // Bootstrap | |
| // | |
| // | |
| bootstrap(); | |
| function bootstrap() { | |
| bootstrap3() | |
| function bootstrap2() { | |
| function bootstrap3() { | |
| alert('LOL') | |
| } | |
| } | |
| } | |
| } | |
| } | |
| export default FinderCtrl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment