Hi, before trying meteor I’ve dabbled in angular and there i found a cool little feature that i’d like to use in meteor but i dont want to install the whole angular code to just use this small part. So if there is some easy way to set up this with meteor/blaze let me know.
Im working on my login and register forms and this is what i would have done in angular:
<div class="login" ng-show="true">
//login form
Not registered? <button ng-click="true = !true">Register</button>
</div>
<<div class="login" ng-show="!true">
//register form
</div>
Because I’ve read somewhere on stack that adding a css class is the right way to do it and I didn’t know there was a hide() option
PS:
I’ve been learning programming just for the last 3 months so I’ve got alot of basics and “most used” to learn so please bear with my sometimes stupid questions and thanks guys for the help so far…