-
Notifications
You must be signed in to change notification settings - Fork 20
/
browser.js
49 lines (42 loc) · 1.2 KB
/
browser.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* Mixcloud Tracklist browser extension
*
* Copyright (c) 2015 Andrew Lawson <http://adlawson.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @link https://github.com/adlawson/mixcloud-tracklist
*/
'use strict';
module.exports = {
insert,
insertBefore,
onChange,
querySelector,
replace
}
function insert(container, html) {
container.insertAdjacentHTML('beforeend', html);
}
function insertBefore(container, sibling, html) {
const temp = document.createElement('div');
temp.insertAdjacentHTML('afterbegin', html);
container.insertBefore(temp.firstChild, sibling);
}
function onChange(element, fn) {
const observer = new MutationObserver(mutations => {
mutations.forEach(mutation => {
if (mutation.addedNodes.length > 0) fn();
});
});
observer.observe(element, { childList: true });
}
function querySelector(query) {
return document.querySelector(query);
}
function replace(container, old, html) {
const temp = document.createElement('div');
temp.insertAdjacentHTML('afterbegin', html);
container.replaceChild(temp.firstChild, old);
}