Implemented URL query parsing for initial token /opa/?token=abcde
[src/app-framework-demo.git] / afb-client / bower_components / foundation-apps / dist / js / foundation-apps-templates.js
1 angular.module('foundation').run(['$templateCache', function($templateCache) {
2   $templateCache.put('components/accordion/accordion-item.html',
3     '<div class="accordion-item" ng-class="{\'is-active\': active}">\n' +
4     '  <div class="accordion-title" ng-click="activate()">{{ title }}</div>\n' +
5     '  <div class="accordion-content" ng-transclude></div>\n' +
6     '</div>\n' +
7     '');
8 }]);
9
10 angular.module('foundation').run(['$templateCache', function($templateCache) {
11   $templateCache.put('components/accordion/accordion.html',
12     '<div class="accordion" ng-transclude>\n' +
13     '</div>\n' +
14     '');
15 }]);
16
17 angular.module('foundation').run(['$templateCache', function($templateCache) {
18   $templateCache.put('components/actionsheet/actionsheet-button.html',
19     '<div>\n' +
20     '  <a href="#"\n' +
21     '    class="button"\n' +
22     '    ng-if="title.length > 0">{{ title }}</a>\n' +
23     '  <div ng-transclude></div>\n' +
24     '</div>\n' +
25     '');
26 }]);
27
28 angular.module('foundation').run(['$templateCache', function($templateCache) {
29   $templateCache.put('components/actionsheet/actionsheet-content.html',
30     '<div\n' +
31     '  class="action-sheet {{ position }}"\n' +
32     '  ng-class="{\'is-active\': active}"\n' +
33     '  >\n' +
34     '    <div\n' +
35     '    ng-transclude>\n' +
36     '    </div>\n' +
37     '</div>\n' +
38     '');
39 }]);
40
41 angular.module('foundation').run(['$templateCache', function($templateCache) {
42   $templateCache.put('components/actionsheet/actionsheet.html',
43     '<div class="action-sheet-container"\n' +
44     '  ng-transclude>\n' +
45     '</div>\n' +
46     '');
47 }]);
48
49 angular.module('foundation').run(['$templateCache', function($templateCache) {
50   $templateCache.put('components/modal/modal.html',
51     '<div\n' +
52     '  class="modal-overlay"\n' +
53     '  ng-click="hideOverlay()">\n' +
54     '  <aside\n' +
55     '    class="modal"\n' +
56     '    ng-click="$event.stopPropagation();"\n' +
57     '    ng-transclude>\n' +
58     '  </aside>\n' +
59     '</div>\n' +
60     '');
61 }]);
62
63 angular.module('foundation').run(['$templateCache', function($templateCache) {
64   $templateCache.put('components/notification/notification-set.html',
65     '<div class="notification-container {{position}}">\n' +
66     '  <zf-notification ng-repeat="notification in notifications"\n' +
67     '    title="notification.title"\n' +
68     '    image="notification.image"\n' +
69     '    notif-id = "notification.id"\n' +
70     '    color="notification.color"\n' +
71     '    autoclose="notification.autoclose"\n' +
72     '    >{{ notification.content }}</zf-notification>\n' +
73     '</div>');
74 }]);
75
76 angular.module('foundation').run(['$templateCache', function($templateCache) {
77   $templateCache.put('components/notification/notification-static.html',
78     '<div zf-swipe-close="swipe" class="static-notification {{ color }} {{ position }}">\n' +
79     '  <a href="#"\n' +
80     '    class="close-button"\n' +
81     '    ng-click="hide(); $event.preventDefault(); $event.stopPropagation()">&times;</a>\n' +
82     '  <div class="notification-icon" ng-if="image">\n' +
83     '    <img ng-src="{{ image }}"/>\n' +
84     '  </div>\n' +
85     '  <div class="notification-content">\n' +
86     '    <h1>{{ title }}</h1>\n' +
87     '    <p ng-transclude></p>\n' +
88     '  </div>\n' +
89     '</div>\n' +
90     '');
91 }]);
92
93 angular.module('foundation').run(['$templateCache', function($templateCache) {
94   $templateCache.put('components/notification/notification.html',
95     '<div zf-swipe-close="swipe" class="notification {{ color }}">\n' +
96     '  <a href="#"\n' +
97     '    class="close-button"\n' +
98     '    ng-click="hide(); $event.preventDefault(); $event.stopPropagation()">&times;</a>\n' +
99     '  <div class="notification-icon" ng-if="image">\n' +
100     '    <img ng-src="{{ image }}"/>\n' +
101     '  </div>\n' +
102     '  <div class="notification-content">\n' +
103     '    <h1>{{ title }}</h1>\n' +
104     '    <p ng-transclude></p>\n' +
105     '  </div>\n' +
106     '</div>\n' +
107     '');
108 }]);
109
110 angular.module('foundation').run(['$templateCache', function($templateCache) {
111   $templateCache.put('components/offcanvas/offcanvas.html',
112     '<div\n' +
113     '  class="off-canvas {{ position }}"\n' +
114     '  ng-class="{\'is-active\': active}"\n' +
115     '  ng-transclude>\n' +
116     '</div>\n' +
117     '');
118 }]);
119
120 angular.module('foundation').run(['$templateCache', function($templateCache) {
121   $templateCache.put('components/panel/panel.html',
122     '<div\n' +
123     '  class="panel"\n' +
124     '  ng-class="positionClass"\n' +
125     '  ng-transclude\n' +
126     '  >\n' +
127     '</div>\n' +
128     '');
129 }]);
130
131 angular.module('foundation').run(['$templateCache', function($templateCache) {
132   $templateCache.put('components/popup/popup.html',
133     '<div class="popup" ng-class="{\'is-active\': active }" ng-transclude>\n' +
134     '</div>\n' +
135     '');
136 }]);
137
138 angular.module('foundation').run(['$templateCache', function($templateCache) {
139   $templateCache.put('components/tabs/tab-content.html',
140     '<div class="tab-contents">\n' +
141     '  <div zf-tab-individual\n' +
142     '    class="tab-content"\n' +
143     '    ng-class="{\'is-active\': tab.active}"\n' +
144     '    ng-repeat="tab in tabs"\n' +
145     '    tab="tab">\n' +
146     '  </div>\n' +
147     '</div>\n' +
148     '');
149 }]);
150
151 angular.module('foundation').run(['$templateCache', function($templateCache) {
152   $templateCache.put('components/tabs/tab.html',
153     '<div class="tab-item"\n' +
154     '  ng-class="{\'is-active\': active}"\n' +
155     '  ng-click="makeActive()">{{ title }}</div>\n' +
156     '');
157 }]);
158
159 angular.module('foundation').run(['$templateCache', function($templateCache) {
160   $templateCache.put('components/tabs/tabs.html',
161     '<div>\n' +
162     '  <div class="tabs" ng-transclude>\n' +
163     '  </div>\n' +
164     '  <div zf-tab-content\n' +
165     '    target="{{ id }}"\n' +
166     '    ng-if="showTabContent">\n' +
167     '  </div>\n' +
168     '</div>\n' +
169     '');
170 }]);