Guest User

Untitled

a guest
Feb 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. map(function (t) {
  2. var stuff = new Array();
  3. var n = t.parentNode.nextSibling;
  4. while (n != null && n.tagName != 'P') {
  5. stuff[stuff.length] = n;
  6. n = n.nextSibling;
  7. }
  8. return DIV(null, t, stuff).innerHTML + '\n';
  9. }, getElementsByTagAndClassName(null, 'mochidef', $('api-reference').parentNode.parentNode))
Add Comment
Please, Sign In to add comment