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

app.js « browserify « build-systems « tests « ng-dialog « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa4bf8f9113a686fc4c8bacf9a1d1a5a777b6e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import angular from 'angular';
import ngDialog from 'ng-dialog';

let app = angular.module('exampleApp', [
    ngDialog
]);

app.run((ngDialog) => {
    ngDialog.open({
        template: 'dialog',
        className: 'ngdialog-theme-default'
    });
});