-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Customization #51
Comments
I just added a Idealy, I'd want something like this: https://codepen.io/sheriffderek/pen/4e05ec823df4b43210271089c1a14117/
This is the default markup:
This is how you can change it a bit:
So, it has the same customization as most components do - I think. You could also create a new component and .extend() this component and change things from the component's controller etc., right? |
You could definitely do that. If you want to customize, you can always drop it into // app/components/x-file-input.js
import XFileInput from 'emberx-file-input/components/x-file-input';
export default XFileInput.extend({
tagName: 'div'
}); |
Would love to have some customization feature like tagName.
The text was updated successfully, but these errors were encountered: