mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
20 lines
325 B
JavaScript
20 lines
325 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
const noopfn = function () {
|
|
};
|
|
window.addthis = {
|
|
addEventListener: noopfn,
|
|
button: noopfn,
|
|
counter: noopfn,
|
|
init: noopfn,
|
|
layers: noopfn,
|
|
ready: noopfn,
|
|
sharecounters: {
|
|
getShareCounts: noopfn
|
|
},
|
|
toolbox: noopfn,
|
|
update: noopfn
|
|
};
|
|
}());
|