(child, uber)
| 43 | return destination; |
| 44 | } |
| 45 | function inherits(child, uber) { |
| 46 | child.prototype = extend(child.prototype || {}, uber.prototype); |
| 47 | } |
| 48 | function hasIgnoredElements(el) { |
| 49 | while (el.parentNode) { |
| 50 | if (el.getAttribute('data-slideout-ignore') !== null) { |