This repository was archived by the owner on Oct 8, 2024. It is now read-only.
This repository was archived by the owner on Oct 8, 2024. It is now read-only.
Wrapper margins are still inherited even when not included in the wrapper object's inheritStyles array #34
Closed
Description
I've instantiated my hideShowPassword element not to inherit margin values (since they aren't inherited properly in Firefox. See issue #33.). However, the margins are still being specified on the wrapper element. Here's how I instantiated the element:
$('#password').hideShowPassword(false, true, {
wrapper: {
inheritStyles: ['display', 'verticalAlign']
}
});