Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. private el:HTMLElement;
  2. constructor(htm:string) {
  3. this.el = document.createElement('div');
  4. $(this.el).html(htm);
  5. }
  6. public draw(selector:string):HTMLElement {
  7. return ($(this.el).find(selector).clone());
  8. }
  9. public destroy():void {
  10. this.el = null;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement