jquery-simulate icon indicating copy to clipboard operation
jquery-simulate copied to clipboard

Add "change" as KeyboardEvent

Open rentalhost opened this issue 10 years ago • 0 comments

Like:

    createEvent: function(type, options) {
        if (/^mouse(over|out|down|up|move)|(dbl)?click$/.test(type)) {
            return this.mouseEvent(type, options);
        } else if (/^key(up|down|press)|change$/.test(type)) {
            return this.keyboardEvent(type, options);
        }
    },

It'll support: object.simulate("change").

rentalhost avatar Nov 05 '14 21:11 rentalhost