Skip to content

Instantly share code, notes, and snippets.

@stewones
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save stewones/5b90e41b6d7e27ad2e0a to your computer and use it in GitHub Desktop.

Select an option

Save stewones/5b90e41b6d7e27ad2e0a to your computer and use it in GitHub Desktop.
nested funcions
'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