We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[email protected]
the API: /** * remove property value * @param {...String} args - property name * @return {Frame} An instance itself * @example frame.remove("display") */ public remove(...args: NameType[])
/** * remove property value * @param {...String} args - property name * @return {Frame} An instance itself * @example frame.remove("display") */ public remove(...args: NameType[])
when i call this method like this: moveableFrame.remove(...['transform', 'height']), can not remove properties
just can remove one by one :moveableFrame.remove('transform') moveableFrame.remove('height')
The text was updated successfully, but these errors were encountered:
@leeboo
remove method's parameter is not array.
this like below:
frame.remove("transform", "translate");
you can juse use one property.
moveableFrame.remove('transform'); moveableFrame.remove('height');
Sorry, something went wrong.
No branches or pull requests
[email protected]
the API:
/** * remove property value * @param {...String} args - property name * @return {Frame} An instance itself * @example frame.remove("display") */ public remove(...args: NameType[])
when i call this method like this: moveableFrame.remove(...['transform', 'height']), can not remove properties
just can remove one by one :moveableFrame.remove('transform') moveableFrame.remove('height')
The text was updated successfully, but these errors were encountered: