summaryrefslogtreecommitdiffstats
path: root/afb-client/bower_components/foundation-apps/dist/js/foundation-apps-templates.js
blob: 02257733435003a19c855d885bd5d2489cbefdc1 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/accordion/accordion-item.html',
    '<div class="accordion-item" ng-class="{\'is-active\': active}">\n' +
    '  <div class="accordion-title" ng-click="activate()">{{ title }}</div>\n' +
    '  <div class="accordion-content" ng-transclude></div>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/accordion/accordion.html',
    '<div class="accordion" ng-transclude>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/actionsheet/actionsheet-button.html',
    '<div>\n' +
    '  <a href="#"\n' +
    '    class="button"\n' +
    '    ng-if="title.length > 0">{{ title }}</a>\n' +
    '  <div ng-transclude></div>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/actionsheet/actionsheet-content.html',
    '<div\n' +
    '  class="action-sheet {{ position }}"\n' +
    '  ng-class="{\'is-active\': active}"\n' +
    '  >\n' +
    '    <div\n' +
    '    ng-transclude>\n' +
    '    </div>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/actionsheet/actionsheet.html',
    '<div class="action-sheet-container"\n' +
    '  ng-transclude>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/modal/modal.html',
    '<div\n' +
    '  class="modal-overlay"\n' +
    '  ng-click="hideOverlay()">\n' +
    '  <aside\n' +
    '    class="modal"\n' +
    '    ng-click="$event.stopPropagation();"\n' +
    '    ng-transclude>\n' +
    '  </aside>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/notification/notification-set.html',
    '<div class="notification-container {{position}}">\n' +
    '  <zf-notification ng-repeat="notification in notifications"\n' +
    '    title="notification.title"\n' +
    '    image="notification.image"\n' +
    '    notif-id = "notification.id"\n' +
    '    color="notification.color"\n' +
    '    autoclose="notification.autoclose"\n' +
    '    >{{ notification.content }}</zf-notification>\n' +
    '</div>');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/notification/notification-static.html',
    '<div zf-swipe-close="swipe" class="static-notification {{ color }} {{ position }}">\n' +
    '  <a href="#"\n' +
    '    class="close-button"\n' +
    '    ng-click="hide(); $event.preventDefault(); $event.stopPropagation()">&times;</a>\n' +
    '  <div class="notification-icon" ng-if="image">\n' +
    '    <img ng-src="{{ image }}"/>\n' +
    '  </div>\n' +
    '  <div class="notification-content">\n' +
    '    <h1>{{ title }}</h1>\n' +
    '    <p ng-transclude></p>\n' +
    '  </div>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/notification/notification.html',
    '<div zf-swipe-close="swipe" class="notification {{ color }}">\n' +
    '  <a href="#"\n' +
    '    class="close-button"\n' +
    '    ng-click="hide(); $event.preventDefault(); $event.stopPropagation()">&times;</a>\n' +
    '  <div class="notification-icon" ng-if="image">\n' +
    '    <img ng-src="{{ image }}"/>\n' +
    '  </div>\n' +
    '  <div class="notification-content">\n' +
    '    <h1>{{ title }}</h1>\n' +
    '    <p ng-transclude></p>\n' +
    '  </div>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/offcanvas/offcanvas.html',
    '<div\n' +
    '  class="off-canvas {{ position }}"\n' +
    '  ng-class="{\'is-active\': active}"\n' +
    '  ng-transclude>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/panel/panel.html',
    '<div\n' +
    '  class="panel"\n' +
    '  ng-class="positionClass"\n' +
    '  ng-transclude\n' +
    '  >\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/popup/popup.html',
    '<div class="popup" ng-class="{\'is-active\': active }" ng-transclude>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/tabs/tab-content.html',
    '<div class="tab-contents">\n' +
    '  <div zf-tab-individual\n' +
    '    class="tab-content"\n' +
    '    ng-class="{\'is-active\': tab.active}"\n' +
    '    ng-repeat="tab in tabs"\n' +
    '    tab="tab">\n' +
    '  </div>\n' +
    '</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/tabs/tab.html',
    '<div class="tab-item"\n' +
    '  ng-class="{\'is-active\': active}"\n' +
    '  ng-click="makeActive()">{{ title }}</div>\n' +
    '');
}]);

angular.module('foundation').run(['$templateCache', function($templateCache) {
  $templateCache.put('components/tabs/tabs.html',
    '<div>\n' +
    '  <div class="tabs" ng-transclude>\n' +
    '  </div>\n' +
    '  <div zf-tab-content\n' +
    '    target="{{ id }}"\n' +
    '    ng-if="showTabContent">\n' +
    '  </div>\n' +
    '</div>\n' +
    '');
}]);
ot; h265dec_lib" # OMX MPEG2 decoder library for Linux (RTM0AC0000XVM2VD30SL41C) #DISTRO_FEATURES_append = " mpeg2dec_lib" # OMX Media Component MPEG4 Decoder Library for Linux (RTM0AC0000XVM4VD30SL41C) #DISTRO_FEATURES_append = " mpeg4dec_lib" # OMX Media Component VC-1 Decoder Library for Linux (RTM0AC0000XVVC1D30SL41C) #DISTRO_FEATURES_append = " vc1dec_lib" # OMX Media Component DivXD Decoder Library for Linux (RTM0AC0000XVDVXD30SL41C) #DISTRO_FEATURES_append = " divxdec_lib" # OMX Media Component RealVideo Decoder Library for Linux (RTM0AC0000XVRLVD30SL41C) #DISTRO_FEATURES_append = " rvdec_lib" # OMX Media Component ALAC Decoder Library for Linux (RTM0AC0000XAALAD30SL41C) #DISTRO_FEATURES_append = " alacdec_lib" # OMX Media Component FLAC Decoder Library for Linux (RTM0AC0000XAFLAD30SL41C) #DISTRO_FEATURES_append = " flacdec_lib" # OMX AAC-LC decoder library for Linux (RTM0AC0000XAAACD30SL41C), # AAC-LC 2ch decoder middleware library for Linux (RTM0AC0000ADAACMZ1SL41C) DISTRO_FEATURES_append = " aaclcdec_lib" DISTRO_FEATURES_append = " aaclcdec_mdw" # OMX aacPlus V2 decoder library for Linux (RTM0AC0000XAAAPD30SL41C), # aacPlus V2 decoder middleware library for Linux (RTM0AC0000ADAAPMZ1SL41C) #DISTRO_FEATURES_append = " aacpv2dec_lib" #DISTRO_FEATURES_append = " aacpv2dec_mdw" # OMX MP3 decoder library for Linux (RTM0AC0000XAMP3D30SL41C), # MP3 decoder middleware library for Linux (RTM0AC0000ADMP3MZ1SL41C) #DISTRO_FEATURES_append = " mp3dec_lib" #DISTRO_FEATURES_append = " mp3dec_mdw" # OMX WMA decoder library for Linux (RTM0AC0000XAWMAD30SL41C), # WMA decoder middleware library for Linux (RTM0AC0000ADWMAMZ1SL41C) #DISTRO_FEATURES_append = " wmadec_lib" #DISTRO_FEATURES_append = " wmadec_mdw" # OMX AAC-LC encoder library for Linux (RTM0AC0000XAAACE30SL41C) # AAC-LC encoder middleware library for Linux (RTM0AC0000AEAACMZ1SL41C) #DISTRO_FEATURES_append = " aaclcenc_lib" #DISTRO_FEATURES_append = " aaclcenc_mdw" # OMX Dolby(R) Digital decoder library for Linux (RTM0AC0000XADD5D30SL41C), # Dolby(R) Digital decoder middleware library for Linux (RTM0AC0000ADDD5MZ1SL41C) #DISTRO_FEATURES_append = " dddec_lib" #DISTRO_FEATURES_append = " dddec_mdw" # OMX Media Component VP8 Decoder Library for Linux (RTM0AC0000XVVP8D30SL41C) #DISTRO_FEATURES_append = " vp8dec_lib" # OMX Media Component VP8 Encoder Library for Linux (RTM0AC0000XVVP8E30SL41C) #DISTRO_FEATURES_append = " vp8enc_lib" # OMX Media Component VP9 Decoder Library for Linux (RTM0AC0000XVVP9D30SL41C) #DISTRO_FEATURES_append = " vp9dec_lib" # CMS Basic Color Management Middleware for Linux (RTM0AC0000JRCMBCV0SL41C) #DISTRO_FEATURES_append = " cmsbcm" # CMS CMM3 Backlight Control Middleware for Linux (RTM0AC0000JRCMBLC0SL41C) #DISTRO_FEATURES_append = " cmsblc" # CMS VSP2 Dynamic Gamma Correction Middleware for Linux (RTM0AC0000JRCMDGV0SL41C) #DISTRO_FEATURES_append = " cmsdgc" # ISDB-T DTV Software Package for Linux (RTM0RC0000TE020000SL41C) #DISTRO_FEATURES_append = " dtv" # DVD Core-Middleware for Linux (RTM0RC0000XDVDC301SL41C) # DVD Encryption Library for Linux (RTM0RC0000XDVDF301SL41C) #DISTRO_FEATURES_append = " dvd" #DISTRO_FEATURES_append = " dvd_encryption_library" # ADSP Driver for Linux (RCG3AHPDL4101ZDO) # ADSP Interface for Linux (RCG3AHIFL4101ZDP) # ADSP Framework (RCG3AHFWN0201ZDP) #DISTRO_FEATURES_append = " adsp" # AVB Software Package for Linux #DISTRO_FEATURES_append = " avb" # Linux ICCOM driver (RCG3ZLIDL4101ZNO) # Linux ICCOM library (RCG3ZLILL4101ZNO) #DISTRO_FEATURES_append = " iccom" # Evaluation packages #DISTRO_FEATURES_append = " use_eva_pkg" # Configuration for ivi-shell and ivi-extension #DISTRO_FEATURES_append = " ivi-shell" # Configuration for USB 3.0 #MACHINE_FEATURES_append = " usb3" # Add Capacity Aware migration Strategy (CAS) MACHINE_FEATURES_append = " cas"