Skip to content

Commit

Permalink
release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bcinarli committed Feb 5, 2018
1 parent 5ad06c6 commit df11bfc
Show file tree
Hide file tree
Showing 4 changed files with 184 additions and 123 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,19 @@ el.outerHeight(true);
el.offsetHeight(true); // alias method
```
### Cloning
Clone methods, clones the nodes in a UXR object.
``` js
let el = uxr(selector);

// clones the all elements in uxr object
let clone = el.clone();

// deep clones (child elements and inner contents) the all elements in uxr object
let cloneDeep = el.clone(true);
```
[npm]: https://img.shields.io/npm/v/uxr.svg
[npm-url]: https://npmjs.com/package/uxr
Expand Down
Loading

0 comments on commit df11bfc

Please sign in to comment.