Skip to content

Instantly share code, notes, and snippets.

@guzmonne
Created June 24, 2017 22:01
Show Gist options
  • Save guzmonne/0a7bd6f0b0dad8ff244d8903b153bd37 to your computer and use it in GitHub Desktop.
Save guzmonne/0a7bd6f0b0dad8ff244d8903b153bd37 to your computer and use it in GitHub Desktop.
cognito-auth.LoginForm.js
(function(EventEmitter, tmpl){
/* LoginForm */
var $root = document.getElementById('root'),
$container = document.createElement('div');
EventEmitter.on('LoginForm:mount', function() {
$container.innerHTML = tmpl('LoginForm', {})
$root.appendChild($container)
})
EventEmitter.on('LoginForm:unmount', function() {
$container.remove()
})
})(window.EventEmitter, window.tmpl)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment