Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Reserved keyword "default" used as unquoted property name (jQM 1.4.1) #7165

@riaan

Description

@riaan

Usage of the Javascript reserved keyword "defaut" is not allowed as unquoted property name. YUI compressor fails to minify the jQuery Mobile 1.4.1 code.

3195: duration = $.fn.animationComplete.default;
3222: $.fn.animationComplete.default = 1000;

Use following instead:
3195: duration = $.fn.animationComplete["default"];
3222: $.fn.animationComplete["default"] = 1000;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions