-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thursday July 16, 2015 #1
Conversation
border: 1px solid $border-color; | ||
border-radius: 3px; | ||
max-width: 225px; | ||
margin: 5px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try putting this margin before the span-columns
since this will override the margin-right
that the mixin includes
}, immediate); | ||
|
||
var inputEl = document.querySelector('.search input'); | ||
var inputValue = inputEl.value; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You will need to grab the inputEl.value
in a callback. Otherwise inputValue
will be just set to whatever the page starts with.
Just like when you grab innerHTML
: value
will just return the value when you call it and your inputValue
won't automatically update with changes to the input.
📂 Starting Project