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

AjaxHelper.adapter.ts « AjaxHelper « src « vue « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c960a421303237e258e03a7fa3a9576dd35bba22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import AjaxHelper from './AjaxHelper';

declare global {
  interface Window {
    ajaxHelper: AjaxHelper;
  }
}

window.ajaxHelper = AjaxHelper;

function ajaxQueue() {
  return globalAjaxQueue;
}

angular.module('piwikApp.service').service('globalAjaxQueue', ajaxQueue);