Skip to content

zIndex for placeholder span is set wrong #24

Open
@lvostinar

Description

@lvostinar

specifically this line:

if (isNaN(zIndex) || !zIndex) zIndex = 1;

is wrong, because default value of zIndex is auto which is default layer (same as zIndex 0)

so should be

if (isNaN(zIndex) || !zIndex) zIndex = 0;

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions