Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mutation_observer.js « dom_shims « helpers « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68c494f19eaa3b2696f1e90405ae2d7c3336b37e (plain)
1
2
3
4
5
6
7
/* eslint-disable class-methods-use-this */
class MutationObserverStub {
  disconnect() {}
  observe() {}
}

global.MutationObserver = MutationObserverStub;