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

index.html « 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: f3d1bd79ff8dfb27d02e7c636c5a8a3110778f8d (plain)
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
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>Browserify test</title>

    <link rel="icon" href="data:;base64,iVBORw0KGgo=">
    <link rel="stylesheet" href="../../../css/ngDialog.css">
    <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="../../../css/ngDialog-theme-default.css">
    <link rel="stylesheet" href="../../../css/ngDialog-theme-plain.css">
    <link rel="stylesheet" href="../../../css/ngDialog-custom-width.css">
</head>
<body ng-app="exampleApp">
<div>
    If you don't see the dialog opened, then it might be an issue with this setup (ngDialog + Browserify).<br>
    Please submit a new issue to our repository at GitHub.
</div>
<script type="text/ng-template" id="dialog">
    <div class="ngdialog-message">
        <h3>ngDialog template</h3>
        <p ng-show="ngDialogId">Dialog Id: <code>{{ngDialogId}}</code></p>
        <p>Close this dialog: <button class="inline close-this-dialog" ng-click="closeThisDialog()">Close</button></p>
    </div>
</script>
<script src="dist/bundle.js"></script>
</body>
</html>