Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialChris Tsantiris
587 Pointsadding ng-show to input tag removes my input bar
I'm working on the Angular course, and I'm stuck on the current step. Adding ng-hide to the label like this: <label ng-hide="editing" works fine since I removed the coolCtrl, but when I add ng-show to the input tag like this: <input ng-show="editing" The input bar no longer renders in the app. I can't enter text to try editing it. Anyone have a solution?
In case anyone is interested, I solved this by un-commenting out the css that was previously commented out. The video skipped that step.