You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/utils/cloneAttributes.js

7 lines
177 B
JavaScript

export default function cloneAttributes(from, to) {
3 years ago
const attributes = from.prop('attributes');
$.each(attributes, function () {
to.attr(this.name, this.value);
});
}