-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2646 lines (2595 loc) · 141 KB
/
index.html
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html ng-app="InVision" ng-controller="AppController" inv-key-combos lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<title ng-bind="windowTitle">
Neodigm InVision
</title>
<!-- Custom webfonts API integration ✨ optimization 🗝️ security -->
<style>
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: local('Open Sans Light'), local('OpenSans-Light'), url(assets/fonts/open_sans/OpenSans-light.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(assets/fonts/open_sans/OpenSans.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(assets/fonts/open_sans/OpenSans-semibold.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(assets/fonts/open_sans/OpenSans-bold.woff) format('woff');
}
</style>
<!-- Interface styles -->
<link type="text/css" rel="stylesheet" href="assets/jquery-ui-1.9.2.custom/css/no-theme/jquery-ui-1.9.2.custom.min.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/uniform.default.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/bootstrap.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/intlTelInput.css">
<link type="text/css" rel="stylesheet" href="assets/apps/share/css/share-offline.css">
<!-- BEGIN SIGNAGE -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<a class="btn-signage--a" href="https://www.thescottkrause.com/" target="_blank">
<div class="btn-signage__div btn-signage__div--1">
<p class="">
Scott C. Krause
</p>
</div>
</a>
<br>
<a class="btn-signage--a" href="https://neodigm.github.io/chi_capstone_prototype1/signage.html" target="_blank">
<div class="btn-signage__div btn-signage__div--2">
<p class="">
View Signs
</p>
</div>
</a>
<script>
$(document).ready(function(){
setInterval( removeMobile, 2000);
});
function removeMobile(){
$("body.mobile").removeClass("mobile");
}
</script>
<style>
.btn-signage__div > p {
position: relative;
color: #222222;
font-size: 16px;
text-align: center;
line-height: 2;
margin: 12px auto 2px
}
.btn-signage__div {
width: 176px;
height: 56px;
background-color: #EDBA08;
margin: 22px;
position: absolute;
z-index: 56;
top: 12px;
boarder: solid 1px #ddaa00;
border-radius: 8px;
}
.btn-signage__div--1 {
left: 12px;
}
.btn-signage__div--2 {
left: 216px;
}
body {
background-image: url("chi_capstone_signage.jpg") !important;
background-size: contain !important;
background-color: #9a6a3a !important;
}
</style>
<!-- END SIGNAGE -->
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="/assets/html5shim/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<script src="/assets/json2/json2.js"></script>
<![endif]-->
</head>
<body
class="branding-invision"
ng-class="bodyClass"
ng-style="bodyStyle">
<!--
This is the initial loading sequence. We need to be able to display this BEFORE the AngularJS
framework loads in order to give the user some sence of activity. But, when the framework kicks
in, it will be able to use the bound ng-controller.
-->
<!-- BEGIN: Loading Sequence. -->
<div ng-if="isLoadingOpen" ng-controller="loading.LoadingController" inv-loading-sequence class="m-loading">
<!-- BEGIN: Loading Indicator. -->
<div class="loading-backdrop">
<div class="loading-container">
<div class="status-container">
<div class="status"></div>
<div class="logo"></div>
</div> <!-- status-container -->
<h2>Loading Experience</h2>
<p>
Powered by <a href="http://www.InVisionApp.com/" target="_blank">InVision</a>
, the best way to share and collaborate on design.
</p>
</div> <!-- loading-container -->
<div class="loading-footer">
<div class="logo"></div>
<h3><a href="http://www.InVisionApp.com/" target="_blank">Powered by InVision</a></h3>
<p><em>Prototyping, Collaboration & Workflow for Designers</em></p>
</div> <!-- loading-footer -->
</div> <!-- loading-backdrop -->
<!-- END: Loading Indicator. -->
</div>
<!-- END: Loading Sequence. -->
<div ng-include=" '/assets/apps/share/views/partials/preload.htm' "></div>
<div ng-include=" '/assets/apps/share/views/layouts/modal.htm' "></div>
<div ng-include=" '/assets/apps/share/views/toolbar/toolbar.htm' "></div>
<div ng-include=" '/assets/apps/share/views/powered-by/powered-by.htm' "></div>
<div
ng-if="isBrowseOpen"
ng-include=" '/assets/apps/share/views/browse/browse.htm' "></div>
<!-- In order to be able to disable horizontal scrolling for some screens, we need to wrap the view in order to be able to maintain screen alignment -->
<div class="desktop-wrapper">
<!-- Tour Points -->
<div
ng-if=" subview == 'preview' "
ng-include=" '/assets/apps/share/views/preview/preview-tour-comments.htm' "></div>
<div
ng-if="subview == 'comments'"
ng-include=" '/assets/apps/share/views/comments/comments.htm' "></div>
<div
ng-if="subview == 'preview'"
is-share-loaded="{{!isLoadingOpen}}"
inv-preview-auto-redirect-listener
ng-include=" '/assets/apps/share/views/preview/preview.htm' "></div>
<!-- Screens for comment mode -->
<div
ng-show="subview == 'comments'"
ng-include=" '/assets/apps/share/views/screens/screens.htm' "c></div>
</div>
<div
ng-if="browserCompatibility.isNotCompatible"
class="m-browser-compatibility ng-cloak"></div>
<script type="text/javascript" src="assets/scripts.js"></script>
<script type="text/javascript">
(function( ng, app ){
"use strict";
app.value(
"config",
{
user: {
id: 117509516,
name: "Trevor Goodchild",
email: "[email protected]",
avatarID: "00000000-0000-0000-0000000000000008",
isAccountAuthenticated: true,
isAnonymous: false,
hasSeenCommentToolTip: false
},
shouldShowPoweredBy: false,
share: {"isNavigateAllowed":true,"screenID":0,"hasClosedShareIntro":true,"isLoadAllScreens":true,"showToolbarIntroduction":false},
project: {"mobileStatusbarIsOpaque":true,"defaultBackgroundColor":"","mobileStatusbarBackgroundColor":"#000000","homeScreenID":174538014,"sortTypeID":1,"lastAccessedAt":1467554290000,"isInGracePeriod":false,"userID":117509516,"companyID":0,"isProcessed":true,"id":7998538,"defaultBackgroundImageID":"","defaultbackgroundimageposition":"","isSample":false,"isAdvanced":false,"mobileStatusbarIsVisible":true,"defaultbackgroundframe":"0","mobileStatusbarFontColor":"white","updatedAt":1468773841000,"defaultZoomScrollBehavior":1,"name":"Loyalty App 1","mobileDeviceWidth":375,"isMobile":true,"isArchived":false,"isOverQuota":false,"createdAt":1467554290000,"mobileDeviceID":25,"defaultAlignment":"center","defaultbackgroundautostretch":"0","isSnap":false},
screens: [{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"b4b4b4","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174538014.png","commentCount":0,"screenGroupId":2766655,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_post_social.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174538014,"imageUrl":"assets/post_social.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#A6A6A6","fixedHeaderBackground":"#A6A6A6"},"updatedAt":1468772238000,"height":667.0,"name":"Post Social","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":1,"createdAt":1468772238000,"fixedHeaderHeight":0,"clientFilename":"post_social.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174465675.png","commentCount":0,"screenGroupId":2765922,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_home.png","backgroundImagePosition":"tile-horizontally","imageVersion":5,"fixedFooterHeight":0,"isProcessed":true,"id":174465675,"imageUrl":"assets/home.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468758179000,"height":667.0,"name":"Home","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":2,"createdAt":1468690725000,"fixedHeaderHeight":0,"clientFilename":"home.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174468974.png","commentCount":0,"screenGroupId":2765922,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_home nacho.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174468974,"imageUrl":"assets/home nacho.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468694686000,"height":667.0,"name":"Home Nacho","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":3,"createdAt":1468694686000,"fixedHeaderHeight":0,"clientFilename":"home nacho.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174468975.png","commentCount":0,"screenGroupId":2765922,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_home taco.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174468975,"imageUrl":"assets/home taco.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468694686000,"height":667.0,"name":"Home Taco","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":4,"createdAt":1468694686000,"fixedHeaderHeight":0,"clientFilename":"home taco.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174471973.png","commentCount":0,"screenGroupId":2765922,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_home niether.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174471973,"imageUrl":"assets/home niether.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468696687000,"height":667.0,"name":"Home Niether","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":5,"createdAt":1468696687000,"fixedHeaderHeight":0,"clientFilename":"home niether.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"FFFFFF","width":185.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174448752.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_Group_1.png","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":0,"isProcessed":true,"id":174448752,"imageUrl":"assets/Group_1.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468693275000,"height":331.0,"name":"left nav","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":6,"createdAt":1468673001000,"fixedHeaderHeight":0,"clientFilename":"Group_1.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"131313","width":185.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174453521.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_Group_1 (1).png","backgroundImagePosition":"tile-horizontally","imageVersion":3,"fixedFooterHeight":0,"isProcessed":true,"id":174453521,"imageUrl":"assets/Group_1 (1).png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#0","fixedHeaderBackground":"#000000"},"updatedAt":1468699635000,"height":225.0,"name":"right nav","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":7,"createdAt":1468678715000,"fixedHeaderHeight":0,"clientFilename":"Group_1 (1).png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174540127.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_apple-touch-startup-image.png","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":174540127,"imageUrl":"assets/apple-touch-startup-image.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468774561000,"height":667.0,"name":"Redeem","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":8,"createdAt":1468773806000,"fixedHeaderHeight":0,"clientFilename":"apple-touch-startup-image.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"8a8a8a","width":376.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174455601.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_Group_1 (4).png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174455601,"imageUrl":"assets/Group_1 (4).png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#8B8B8B","fixedHeaderBackground":"#0"},"updatedAt":1468681055000,"height":667.0,"name":"Modal","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":9,"createdAt":1468681049000,"fixedHeaderHeight":0,"clientFilename":"Group_1 (4).png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174474197.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_share.png","backgroundImagePosition":"tile-horizontally","imageVersion":4,"fixedFooterHeight":0,"isProcessed":true,"id":174474197,"imageUrl":"assets/share.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#FFFFFF","fixedHeaderBackground":"#FFFFFF"},"updatedAt":1468771870000,"height":667.0,"name":"Share","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":10,"createdAt":1468699565000,"fixedHeaderHeight":0,"clientFilename":"share.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"b4b4b4","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174546781.png","commentCount":0,"screenGroupId":2766655,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_flyover redeem.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174546781,"imageUrl":"assets/flyover redeem.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#A6A6A6","fixedHeaderBackground":"#A6A6A6"},"updatedAt":1468779583000,"height":667.0,"name":"Flyover Redeem","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":11,"createdAt":1468779583000,"fixedHeaderHeight":0,"clientFilename":"flyover redeem.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"0b0000","width":284.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"174552881.png","commentCount":0,"screenGroupId":2766655,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_youtube_icon.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":174552881,"imageUrl":"assets/youtube_icon.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"#000000","fixedHeaderBackground":"#1E0000"},"updatedAt":1468784419000,"height":175.0,"name":"Youtube Icon","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":12,"createdAt":1468784419000,"fixedHeaderHeight":0,"clientFilename":"youtube_icon.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176190390.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_taco locator.png","backgroundImagePosition":"tile-horizontally","imageVersion":2,"fixedFooterHeight":0,"isProcessed":true,"id":176190390,"imageUrl":"assets/taco locator.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469372678000,"height":667.0,"name":"taco locator","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":13,"createdAt":1469371375000,"fixedHeaderHeight":0,"clientFilename":"taco locator.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176191429.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_add 2 my locations.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":176191429,"imageUrl":"assets/add 2 my locations.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469372704000,"height":667.0,"name":"Add 2 My Locations","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":14,"createdAt":1469372704000,"fixedHeaderHeight":0,"clientFilename":"add 2 my locations.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176193691.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_map.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":176193691,"imageUrl":"assets/map.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469374291000,"height":667.0,"name":"Map","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":15,"createdAt":1469374291000,"fixedHeaderHeight":0,"clientFilename":"map.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176196362.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_my locations.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":176196362,"imageUrl":"assets/my locations.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469376364000,"height":667.0,"name":"My Locations","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":16,"createdAt":1469376364000,"fixedHeaderHeight":0,"clientFilename":"my locations.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176218773.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_my diet.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":176218773,"imageUrl":"assets/my diet.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469392349000,"height":667.0,"name":"My Diet","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":17,"createdAt":1469392349000,"fixedHeaderHeight":0,"clientFilename":"my diet.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176223813.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_Share_diet_prefs.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":176223813,"imageUrl":"assets/Share_diet_prefs.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469396074000,"height":667.0,"name":"Share Diet Prefs","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":18,"createdAt":1469396074000,"fixedHeaderHeight":0,"clientFilename":"Share_diet_prefs.png"},{"backgroundImageClientFilename":"","backgroundAutostretch":false,"backgroundImageUrl":"","zoomScrollBehavior":1,"backgroundColor":"ffffff","width":375.0,"screenUploadState":3,"backgroundImageWidth":"","serverFileName":"176229141.png","commentCount":0,"screenGroupId":2741718,"unreadCommentCount":0,"backgroundImageHeight":"","projectID":7998538,"isPlaceholder":false,"userID":117509516,"thumbnailUrl":"assets/thumb_cart.png","backgroundImagePosition":"tile-horizontally","imageVersion":1,"fixedFooterHeight":0,"isProcessed":true,"id":176229141,"imageUrl":"assets/cart.png","backgroundimageserverfilename":"","backgroundFrame":false,"screenTypeID":1,"extended":{"fixedFooterBackground":"ffffff","fixedHeaderBackground":"ffffff"},"updatedAt":1469400855000,"height":667.0,"name":"Cart","backgroundImageID":0,"backgroundimageversion":"1","alignment":"center","updatedByUserName":"Trevor Goodchild","isArchived":false,"sort":19,"createdAt":1469400855000,"fixedHeaderHeight":0,"clientFilename":"cart.png"}],
dividers: [{"position":0,"projectID":7998538,"sort":0,"expanded":true,"label":"","type":"divider","dividerID":0},{"position":0,"projectID":7998538,"sort":1,"label":"FLYOVER","type":"divider","dividerID":2766655},{"position":0,"projectID":7998538,"sort":2,"label":"HOME PAGES","type":"divider","dividerID":2765922},{"position":0,"projectID":7998538,"sort":3,"label":"HOME SUB NAV","type":"divider","dividerID":2741718}],
metaScreens: {"splash":{"relation":"apple-touch-startup-image","screenclientfilename":"apple-touch-startup-image.png","screenserverfilename":"174540127.png","backgroundColor":"ffffff","thumbnailUrl":"","imageUrl":"assets/apple-touch-startup-image.png"},"icon":{"sameOriginImageUrl":"","relation":"apple-touch-icon-precomposed","imageUrl":""}},
hotspots: [{"eventTypeID":9,"targetScreenID":174465675,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":-10.0,"y":-10.0,"screenID":176191429,"id":577164774,"isScrollTo":false,"metaData":{"redirectAfter":1200},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":145.0,"height":54.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":217.0,"y":517.0,"screenID":174540127,"id":572936564,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174546781,"width":147.0,"height":52.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":13.0,"y":516.0,"screenID":174540127,"id":572936005,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":371.0,"height":56.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":583.0,"screenID":176229141,"id":577276931,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":174540127,"width":373.0,"height":61.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":519.0,"screenID":176229141,"id":577276916,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":174468974,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":-10.0,"y":-10.0,"screenID":174546781,"id":572955666,"isScrollTo":false,"metaData":{"redirectAfter":2000},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":51.0,"height":30.0,"isBottomAligned":false,"templateID":"","transitionTypeID":11,"x":131.0,"y":0.0,"screenID":174453521,"id":572668170,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":176196362,"width":182.0,"height":34.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":1.0,"y":103.0,"screenID":174453521,"id":577180055,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176218773,"width":182.0,"height":34.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":66.0,"screenID":174453521,"id":577247423,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":370.0,"height":343.0,"isBottomAligned":false,"templateID":"","transitionTypeID":8,"x":1.0,"y":57.0,"screenID":174455601,"id":572675871,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":0,"width":371.0,"height":184.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":480.0,"screenID":174455601,"id":572974022,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":174552881,"width":268.0,"height":62.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":52.0,"y":404.0,"screenID":174455601,"id":572972713,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":45.875,"y":226.39062},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":0,"width":62.0,"height":31.0,"isBottomAligned":false,"templateID":"","transitionTypeID":12,"x":1.0,"y":0.0,"screenID":174448752,"id":572666819,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":174465675,"width":74.0,"height":29.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":34.0,"screenID":174448752,"id":572956302,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176190390,"width":181.0,"height":40.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":64.0,"screenID":174448752,"id":577161479,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":308.0,"height":53.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":36.0,"y":254.0,"screenID":174468974,"id":572717644,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174471973,"width":51.0,"height":53.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":311.0,"y":322.0,"screenID":174468974,"id":572726860,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174474197,"width":149.0,"height":50.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":197.0,"y":446.0,"screenID":174468974,"id":572871843,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174540127,"width":145.0,"height":52.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":33.0,"y":443.0,"screenID":174468974,"id":572937617,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174468974,"width":306.0,"height":50.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":35.0,"y":445.0,"screenID":174471973,"id":572725799,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174468975,"width":310.0,"height":49.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":33.0,"y":256.0,"screenID":174471973,"id":572725790,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":311.0,"height":55.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":34.0,"y":442.0,"screenID":174468975,"id":572717656,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174471973,"width":52.0,"height":51.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":308.0,"y":136.0,"screenID":174468975,"id":572725810,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174474197,"width":149.0,"height":56.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":196.0,"y":253.0,"screenID":174468975,"id":572871858,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176229141,"width":145.0,"height":54.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":32.0,"y":254.0,"screenID":174468975,"id":572937629,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174468974,"width":47.0,"height":49.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":315.0,"y":134.0,"screenID":174465675,"id":572713680,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174468975,"width":48.0,"height":46.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":313.0,"y":327.0,"screenID":174465675,"id":572713732,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174474197,"width":146.0,"height":54.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":198.0,"y":254.0,"screenID":174465675,"id":572871045,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174474197,"width":145.0,"height":55.0,"isBottomAligned":false,"templateID":"","transitionTypeID":4,"x":200.0,"y":443.0,"screenID":174465675,"id":572871306,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174540127,"width":150.0,"height":54.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":31.0,"y":443.0,"screenID":174465675,"id":572936529,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176229141,"width":147.0,"height":48.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":32.0,"y":255.0,"screenID":174465675,"id":572936525,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":365.0,"height":72.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":6.0,"y":564.0,"screenID":176193691,"id":577171826,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176191429,"width":359.0,"height":91.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":8.0,"y":9.0,"screenID":176193691,"id":577171529,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176191429,"width":27.0,"height":28.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":166.0,"y":248.0,"screenID":176193691,"id":577171545,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176191429,"width":25.0,"height":31.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":172.0,"y":285.0,"screenID":176193691,"id":577171553,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176191429,"width":24.0,"height":24.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":207.0,"y":366.0,"screenID":176193691,"id":577171564,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":371.0,"height":51.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":2.0,"y":583.0,"screenID":176218773,"id":577247117,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176223813,"width":369.0,"height":57.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":4.0,"y":523.0,"screenID":176218773,"id":577247091,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":369.0,"height":59.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":4.0,"y":581.0,"screenID":176196362,"id":577180044,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176193691,"width":369.0,"height":54.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":4.0,"y":522.0,"screenID":176196362,"id":577179526,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":9,"targetScreenID":174465675,"width":0.0,"height":0.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":-10.0,"y":-10.0,"screenID":174538014,"id":572928866,"isScrollTo":false,"metaData":{"redirectAfter":1200},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":151.0,"height":54.0,"isBottomAligned":false,"templateID":"","transitionTypeID":5,"x":199.0,"y":442.0,"screenID":174474197,"id":572868651,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":174538014,"width":144.0,"height":52.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":34.0,"y":444.0,"screenID":174474197,"id":572929905,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":174465675,"width":255.0,"height":97.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":57.0,"y":452.0,"screenID":176223813,"id":577261854,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176191429,"width":340.0,"height":414.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":19.0,"y":96.0,"screenID":176190390,"id":577164763,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":176193691,"width":357.0,"height":109.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":10.0,"y":535.0,"screenID":176190390,"id":577171510,"isScrollTo":false,"metaData":{},"targetTypeID":1},{"eventTypeID":1,"targetScreenID":0,"width":280.0,"height":173.0,"isBottomAligned":false,"templateID":"","transitionTypeID":1,"x":0.0,"y":0.0,"screenID":174552881,"id":572974344,"isScrollTo":false,"metaData":{},"targetTypeID":2},{"eventTypeID":1,"targetScreenID":174448752,"width":56.0,"height":51.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":2,"x":3.0,"y":3.0,"screenID":174468974,"id":572651448,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":18,"isFixedPosition":false,"positionOffset":{"x":0.0,"y":57.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174453521,"width":48.0,"height":55.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":1,"x":324.0,"y":0.0,"screenID":174468974,"id":572667105,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":2,"isFixedPosition":true,"positionOffset":{"x":190.0,"y":56.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174455601,"width":61.0,"height":68.0,"isBottomAligned":false,"templateID":17564249,"transitionTypeID":1,"x":312.0,"y":597.0,"screenID":174468974,"id":572675321,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174448752,"width":56.0,"height":51.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":2,"x":3.0,"y":3.0,"screenID":174471973,"id":572651448,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":18,"isFixedPosition":false,"positionOffset":{"x":0.0,"y":57.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174453521,"width":48.0,"height":55.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":1,"x":324.0,"y":0.0,"screenID":174471973,"id":572667105,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":2,"isFixedPosition":true,"positionOffset":{"x":190.0,"y":56.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174455601,"width":61.0,"height":68.0,"isBottomAligned":false,"templateID":17564249,"transitionTypeID":1,"x":312.0,"y":597.0,"screenID":174471973,"id":572675321,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174448752,"width":56.0,"height":51.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":2,"x":3.0,"y":3.0,"screenID":174468975,"id":572651448,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":18,"isFixedPosition":false,"positionOffset":{"x":0.0,"y":57.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174453521,"width":48.0,"height":55.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":1,"x":324.0,"y":0.0,"screenID":174468975,"id":572667105,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":2,"isFixedPosition":true,"positionOffset":{"x":190.0,"y":56.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174455601,"width":61.0,"height":68.0,"isBottomAligned":false,"templateID":17564249,"transitionTypeID":1,"x":312.0,"y":597.0,"screenID":174468975,"id":572675321,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174448752,"width":56.0,"height":51.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":2,"x":3.0,"y":3.0,"screenID":174465675,"id":572651448,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":18,"isFixedPosition":false,"positionOffset":{"x":0.0,"y":57.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174453521,"width":48.0,"height":55.0,"isBottomAligned":false,"templateID":17563491,"transitionTypeID":1,"x":324.0,"y":0.0,"screenID":174465675,"id":572667105,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":2,"isFixedPosition":true,"positionOffset":{"x":190.0,"y":56.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7},{"eventTypeID":1,"targetScreenID":174455601,"width":61.0,"height":68.0,"isBottomAligned":false,"templateID":17564249,"transitionTypeID":1,"x":312.0,"y":597.0,"screenID":174465675,"id":572675321,"isScrollTo":false,"metaData":{"stayOnScreen":true,"overlay":{"closeOnOutsideClick":true,"transitionID":4,"isFixedPosition":true,"positionOffset":{"x":0.0,"y":0.0},"bgOpacity":0,"positionID":1,"reverseTransitionOnClose":true}},"targetTypeID":7}],
branding: {
stub: "invision",
url: "http://www.InVisionApp.com/"
},
mobileDevices: [{"viewportWidth":"0","loadScreenResolution":"","mobileSkinColor":"","className":"desktop","viewportHeight":"0","iconResolution":"","platform":"any","mobileSkin":"any","description":"desktop","isDefaultDeviceType":true,"deviceHeight":0,"orientation":"any","deviceType":"desktop","mobileDeviceID":0,"mobileSkinFilename":"","deviceWidth":0},{"viewportWidth":"320","loadScreenResolution":"640 x 1096","mobileSkinColor":"black","className":"iphone-portrait","viewportHeight":"568","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 - Black","isDefaultDeviceType":false,"deviceHeight":778,"orientation":"portrait","deviceType":"phone","mobileDeviceID":1,"mobileSkinFilename":"iphone-portrait.png","deviceWidth":374},{"viewportWidth":"568","loadScreenResolution":"640 x 1096","mobileSkinColor":"black","className":"iphone-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 - Black","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":2,"mobileSkinFilename":"iphone-landscape.png","deviceWidth":778},{"viewportWidth":"576","loadScreenResolution":"1536 x 2048","mobileSkinColor":"black","className":"ipad-portrait","viewportHeight":"768","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - Black","isDefaultDeviceType":true,"deviceHeight":950,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":3,"mobileSkinFilename":"ipad-portrait.png","deviceWidth":640},{"viewportWidth":"768","loadScreenResolution":"2048 x 1496","mobileSkinColor":"black","className":"ipad-landscape","viewportHeight":"576","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - Black","isDefaultDeviceType":true,"deviceHeight":640,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":4,"mobileSkinFilename":"ipad-landscape.png","deviceWidth":950},{"viewportWidth":"320","loadScreenResolution":"640 x 920","mobileSkinColor":"black","className":"iphone4-portrait","viewportHeight":"480","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 - Black","isDefaultDeviceType":false,"deviceHeight":690,"orientation":"portrait","deviceType":"phone","mobileDeviceID":5,"mobileSkinFilename":"iphone4-portrait.png","deviceWidth":374},{"viewportWidth":"480","loadScreenResolution":"640 x 920","mobileSkinColor":"black","className":"iphone4-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 - Black","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":6,"mobileSkinFilename":"iphone4-landscape.png","deviceWidth":690},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"htcOne-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - Black","isDefaultDeviceType":true,"deviceHeight":836,"orientation":"portrait","deviceType":"phone","mobileDeviceID":7,"mobileSkinFilename":"htcOne-portrait.png","deviceWidth":402},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"htcOne-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - Black","isDefaultDeviceType":true,"deviceHeight":402,"orientation":"landscape","deviceType":"phone","mobileDeviceID":8,"mobileSkinFilename":"htcOne-landscape.png","deviceWidth":836},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"samsungS4-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - Black","isDefaultDeviceType":false,"deviceHeight":786,"orientation":"portrait","deviceType":"phone","mobileDeviceID":9,"mobileSkinFilename":"samsungS4-portrait.png","deviceWidth":406},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"samsungS4-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - Black","isDefaultDeviceType":false,"deviceHeight":406,"orientation":"landscape","deviceType":"phone","mobileDeviceID":10,"mobileSkinFilename":"samsungS4-landscape.png","deviceWidth":786},{"viewportWidth":"320","loadScreenResolution":"640 x 1096","mobileSkinColor":"white","className":"iphone-portrait","viewportHeight":"568","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 - White","isDefaultDeviceType":false,"deviceHeight":778,"orientation":"portrait","deviceType":"phone","mobileDeviceID":11,"mobileSkinFilename":"iphone-portrait-white.png","deviceWidth":374},{"viewportWidth":"568","loadScreenResolution":"640 x 1096","mobileSkinColor":"white","className":"iphone-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 5 - White","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":12,"mobileSkinFilename":"iphone-landscape-white.png","deviceWidth":778},{"viewportWidth":"576","loadScreenResolution":"1536 x 2048","mobileSkinColor":"white","className":"ipad-portrait","viewportHeight":"768","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - White","isDefaultDeviceType":false,"deviceHeight":950,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":13,"mobileSkinFilename":"ipad-portrait-white.png","deviceWidth":640},{"viewportWidth":"768","loadScreenResolution":"2048 x 1496","mobileSkinColor":"white","className":"ipad-landscape","viewportHeight":"576","iconResolution":"152 x 152","platform":"iOS","mobileSkin":"iPad","description":"iPad - White","isDefaultDeviceType":false,"deviceHeight":640,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":14,"mobileSkinFilename":"ipad-landscape-white.png","deviceWidth":950},{"viewportWidth":"320","loadScreenResolution":"640 x 920","mobileSkinColor":"white","className":"iphone4-portrait","viewportHeight":"480","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 - White","isDefaultDeviceType":false,"deviceHeight":690,"orientation":"portrait","deviceType":"phone","mobileDeviceID":15,"mobileSkinFilename":"iphone4-portrait-white.png","deviceWidth":374},{"viewportWidth":"480","loadScreenResolution":"640 x 920","mobileSkinColor":"white","className":"iphone4-landscape","viewportHeight":"320","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 4 - White","isDefaultDeviceType":false,"deviceHeight":374,"orientation":"landscape","deviceType":"phone","mobileDeviceID":16,"mobileSkinFilename":"iphone4-landscape-white.png","deviceWidth":690},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"white","className":"htcOne-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - White","isDefaultDeviceType":false,"deviceHeight":836,"orientation":"portrait","deviceType":"phone","mobileDeviceID":17,"mobileSkinFilename":"htcOne-portrait-white.png","deviceWidth":402},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"white","className":"htcOne-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"HTC One","description":"HTC One - White","isDefaultDeviceType":false,"deviceHeight":402,"orientation":"landscape","deviceType":"phone","mobileDeviceID":18,"mobileSkinFilename":"htcOne-landscape-white.png","deviceWidth":836},{"viewportWidth":"360","loadScreenResolution":"1080 x 1920","mobileSkinColor":"white","className":"samsungS4-portrait","viewportHeight":"640","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - White","isDefaultDeviceType":false,"deviceHeight":786,"orientation":"portrait","deviceType":"phone","mobileDeviceID":19,"mobileSkinFilename":"samsungS4-portrait-white.png","deviceWidth":406},{"viewportWidth":"640","loadScreenResolution":"1920 x 1080","mobileSkinColor":"white","className":"samsungS4-landscape","viewportHeight":"360","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Samsung Galaxy S4","description":"Samsung Galaxy S4 - White","isDefaultDeviceType":false,"deviceHeight":406,"orientation":"landscape","deviceType":"phone","mobileDeviceID":20,"mobileSkinFilename":"samsungS4-landscape-white.png","deviceWidth":786},{"viewportWidth":"450","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"nexus7-portrait","viewportHeight":"685","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 7","description":"Nexus 7","isDefaultDeviceType":true,"deviceHeight":870,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":21,"mobileSkinFilename":"nexus7-portrait.png","deviceWidth":532},{"viewportWidth":"720","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"nexus7-landscape","viewportHeight":"415","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 7","description":"Nexus 7","isDefaultDeviceType":true,"deviceHeight":532,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":22,"mobileSkinFilename":"nexus7-landscape.png","deviceWidth":870},{"viewportWidth":"600","loadScreenResolution":"1080 x 1920","mobileSkinColor":"black","className":"nexus10-portrait","viewportHeight":"925","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 10","description":"Nexus 10","isDefaultDeviceType":false,"deviceHeight":1112,"orientation":"portrait","deviceType":"tablet","mobileDeviceID":23,"mobileSkinFilename":"nexus10-portrait.png","deviceWidth":776},{"viewportWidth":"960","loadScreenResolution":"1920 x 1080","mobileSkinColor":"black","className":"nexus10-landscape","viewportHeight":"565","iconResolution":"192 x 192","platform":"Android","mobileSkin":"Nexus 10","description":"Nexus 10","isDefaultDeviceType":false,"deviceHeight":776,"orientation":"landscape","deviceType":"tablet","mobileDeviceID":24,"mobileSkinFilename":"nexus10-landscape.png","deviceWidth":1112},{"viewportWidth":"375","loadScreenResolution":"750 x 1294","mobileSkinColor":"black","className":"iphone6-portrait","viewportHeight":"667","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 - Black","isDefaultDeviceType":true,"deviceHeight":850,"orientation":"portrait","deviceType":"phone","mobileDeviceID":25,"mobileSkinFilename":"iphone6-portrait.png","deviceWidth":416},{"viewportWidth":"667","loadScreenResolution":"750 x 1294","mobileSkinColor":"black","className":"iphone6-landscape","viewportHeight":"375","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 - Black","isDefaultDeviceType":true,"deviceHeight":416,"orientation":"landscape","deviceType":"phone","mobileDeviceID":26,"mobileSkinFilename":"iphone6-landscape.png","deviceWidth":850},{"viewportWidth":"375","loadScreenResolution":"750 x 1294","mobileSkinColor":"white","className":"iphone6-portrait","viewportHeight":"667","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 - White","isDefaultDeviceType":false,"deviceHeight":850,"orientation":"portrait","deviceType":"phone","mobileDeviceID":27,"mobileSkinFilename":"iphone6-portrait-white.png","deviceWidth":416},{"viewportWidth":"667","loadScreenResolution":"750 x 1294","mobileSkinColor":"white","className":"iphone6-landscape","viewportHeight":"375","iconResolution":"120 x 120","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 - White","isDefaultDeviceType":false,"deviceHeight":416,"orientation":"landscape","deviceType":"phone","mobileDeviceID":28,"mobileSkinFilename":"iphone6-landscape-white.png","deviceWidth":850},{"viewportWidth":"412","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphone6plus-portrait","viewportHeight":"734","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 Plus - Black","isDefaultDeviceType":false,"deviceHeight":920,"orientation":"portrait","deviceType":"phone","mobileDeviceID":29,"mobileSkinFilename":"iphone6plus-portrait.png","deviceWidth":454},{"viewportWidth":"734","loadScreenResolution":"1242 x 2148","mobileSkinColor":"black","className":"iphone6plus-landscape","viewportHeight":"412","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 Plus - Black","isDefaultDeviceType":false,"deviceHeight":454,"orientation":"landscape","deviceType":"phone","mobileDeviceID":30,"mobileSkinFilename":"iphone6plus-landscape.png","deviceWidth":920},{"viewportWidth":"412","loadScreenResolution":"1242 x 2148","mobileSkinColor":"white","className":"iphone6plus-portrait","viewportHeight":"734","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 Plus - White","isDefaultDeviceType":false,"deviceHeight":920,"orientation":"portrait","deviceType":"phone","mobileDeviceID":31,"mobileSkinFilename":"iphone6plus-portrait-white.png","deviceWidth":454},{"viewportWidth":"734","loadScreenResolution":"1242 x 2148","mobileSkinColor":"white","className":"iphone6plus-landscape","viewportHeight":"412","iconResolution":"180 x 180","platform":"iOS","mobileSkin":"iPhone","description":"iPhone 6 Plus - White","isDefaultDeviceType":false,"deviceHeight":454,"orientation":"landscape","deviceType":"phone","mobileDeviceID":32,"mobileSkinFilename":"iphone6plus-portrait-white.png","deviceWidth":920},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"roseGold","className":"apple-watch-38mm-roseGold","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Rose Gold","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":33,"mobileSkinFilename":"apple-watch-38mm-roseGold.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"silverAluminum","className":"apple-watch-38mm-silverAluminum","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Silver Aluminum","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":34,"mobileSkinFilename":"apple-watch-38mm-silverAluminum.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"spaceBlackStainlessSteel","className":"apple-watch-38mm-spaceBlackStainlessSteel","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Space Black Stainless Steel","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":35,"mobileSkinFilename":"apple-watch-38mm-spaceBlackStainlessSteel.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"spaceGrayAluminum","className":"apple-watch-38mm-spaceGrayAluminum","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Space Gray Aluminum","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":36,"mobileSkinFilename":"apple-watch-38mm-spaceGrayAluminum.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"stainlessSteel","className":"apple-watch-38mm-stainlessSteel","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Stainless Steel","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":37,"mobileSkinFilename":"apple-watch-38mm-stainlessSteel.png","deviceWidth":209},{"viewportWidth":"136","loadScreenResolution":"272px x 340px","mobileSkinColor":"yellowGold","className":"apple-watch-38mm-yellowGold","viewportHeight":"170","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"38mm - Yellow Gold","isDefaultDeviceType":false,"deviceHeight":378,"orientation":"portrait","deviceType":"watch","mobileDeviceID":38,"mobileSkinFilename":"apple-watch-38mm-yellowGold.png","deviceWidth":209},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"roseGold","className":"apple-watch-42mm-roseGold","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Rose Gold","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":39,"mobileSkinFilename":"apple-watch-42mm-roseGold.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"silverAluminum","className":"apple-watch-42mm-silverAluminum","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Silver Aluminum","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":40,"mobileSkinFilename":"apple-watch-42mm-silverAluminum.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"spaceBlackStainlessSteel","className":"apple-watch-42mm-spaceBlackStainlessSteel","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Space Black Stainless Steel","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":41,"mobileSkinFilename":"apple-watch-42mm-spaceBlackStainlessSteel.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"spaceGrayAluminum","className":"apple-watch-42mm-spaceGrayAluminum","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Space Gray Aluminum","isDefaultDeviceType":true,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":42,"mobileSkinFilename":"apple-watch-42mm-spaceGrayAluminum.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"stainlessSteel","className":"apple-watch-42mm-stainlessSteel","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Stainless Steel","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":43,"mobileSkinFilename":"apple-watch-42mm-stainlessSteel.png","deviceWidth":240},{"viewportWidth":"156","loadScreenResolution":"312px x 390px","mobileSkinColor":"yellowGold","className":"apple-watch-42mm-yellowGold","viewportHeight":"195","iconResolution":"144 x 144","platform":"iOS","mobileSkin":"apple-watch","description":"42mm - Yellow Gold","isDefaultDeviceType":false,"deviceHeight":438,"orientation":"portrait","deviceType":"watch","mobileDeviceID":44,"mobileSkinFilename":"apple-watch-42mm-yellowGold.png","deviceWidth":240},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"round-dark","className":"android-round-dark","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Round - Dark","isDefaultDeviceType":false,"deviceHeight":310,"orientation":"portrait","deviceType":"watch","mobileDeviceID":45,"mobileSkinFilename":"android-round-dark.png","deviceWidth":185},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"round-light","className":"android-round-light","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Round - Light","isDefaultDeviceType":false,"deviceHeight":310,"orientation":"portrait","deviceType":"watch","mobileDeviceID":46,"mobileSkinFilename":"android-round-light.png","deviceWidth":185},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"square-dark","className":"android-square-dark","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Square - Dark","isDefaultDeviceType":true,"deviceHeight":377,"orientation":"portrait","deviceType":"watch","mobileDeviceID":47,"mobileSkinFilename":"android-square-dark.png","deviceWidth":223},{"viewportWidth":"160","loadScreenResolution":"320px x 320px","mobileSkinColor":"square-light","className":"android-square-light","viewportHeight":"160","iconResolution":"144 x 144","platform":"android","mobileSkin":"android-watch","description":"Square - Light","isDefaultDeviceType":false,"deviceHeight":377,"orientation":"portrait","deviceType":"watch","mobileDeviceID":48,"mobileSkinFilename":"android-square-light.png","deviceWidth":223}]
}
);
})( angular, InVision );
</script>
<script type="text/ng-template" id="/assets/apps/share/views/screens/screens.htm"><div ng-if="!isLiveShare && project.isSnap">
<div
ng-if="subview == 'comments'"
ng-include=" '/assets/apps/share/views/share-lite/comment-bar.htm' "></div>
<div ng-include=" '/assets/apps/share/views/share-lite/share-bar.htm' "></div>
</div>
<!-- desktop projects -->
<div
ng-if=" !project.isMobile || subview == 'comments' "
ng-controller="screens.ScreensController"
inv-screens
inv-add-padding-on-scroll
class="m-screens desktop"
ng-class="{ isScaledCommentMode: project.isMobile }">
<div
ng-repeat="screen in screens track by screen.id"
data-distance="{{ screen.distanceFromStartScreen }}"
class="screen {{ screen.alignment }}"
ng-class="{ visible: (screen.id == selectedScreen.id) }"
ng-style="{
width: ( Math.round(screen.width * screen.displayScale) + 'px' ),
height: ( Math.round(screen.height * screen.displayScale) + 'px' )
}"
data-displayScale="{{screen.displayScale}}">
<img
inv-screen
ng-src="{{ screen.imageUrl }}"
ng-style="{
width: ( Math.round(screen.width * screen.displayScale) + 'px' ),
height: ( Math.round(screen.height * screen.displayScale) + 'px' )
}" />
</div>
</div>
<!-- mobile projects-->
<div
ng-if=" project.isMobile && subview == 'preview' "
ng-controller="screens.ScreensController"
inv-screens
data-distance="{{ screen.distanceFromStartScreen }}"
class="m-screens" >
<div
ng-repeat="screen in screens track by screen.id"
class="screen mobile {{ screen.alignment }}"
ng-class="{ visible: (screen.id == selectedScreen.id) }">
<img inv-screen ng-src="{{ screen.imageUrl }}" />
</div>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/browse.htm">
<div
ng-controller="browse.BrowseController"
inv-browse-key-combos
class="m-browse"
ng-class="{
mobile: project.isMobile,
phone: deviceTemplate.deviceType == 'phone',
tablet: isTabletPortrait
} ">
<!-- BEGIN: Header. -->
<div class="header">
<span ng-if=" project.isMobile ">
<img ng-if=" !! appIcon.imageUrl " class="appIcon" ng-src="{{ appIcon.imageUrl }}" alt="{{ project.name }}">
<img ng-if=" ! appIcon.imageUrl " class="appIcon" ng-src="assets/apps/share/img/icon.png">
</span>
<h2>
{{ project.name }}
</h2>
<a class="btnClose" href="javascript:;" ng-click=" toggleBrowse() ">x</a>
</div>
<!-- END: Header. -->
<!-- BEGIN: Screens. -->
<div class="screens">
<div ng-include=" '/assets/apps/share/views/browse/thumbnails.htm' "></div>
</div>
<!-- END: Screens. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/thumbnails.htm">
<div class="thumbnail-list" ng-class="{ 'without-comments': excludeComments }">
<div ng-repeat="displayItem in displayObjects"
class="{{displayItem.type}}"
ng-class="{ 'invisible-group': displayItem.type == 'divider' && displayItem.sort == 0}" >
<div ng-if=" shouldDividerDisplay(displayItem) " class="divider">
<p class="dividerLabel">
<span class="title">{{ displayItem.label }}</span>
<span class="count">{{ displayItem.screenCount }}</span>
</p>
</div>
<a ng-if="displayItem.type == 'screenObj' "
ng-click="applyScreenNavigation( displayItem )"
class="item"
ng-class="{ selected: ( displayItem == selectedScreen ) }">
<span class="thumbnail-viewport " style="background: #{{displayItem.backgroundColor}}">
<img ng-src="{{ displayItem.thumbnailUrl }}" />
</span>
<span class="name">
{{ displayItem.name }}
</span>
<span class="hasComments" ng-if=" displayItem.unreadCommentCount ">•</span>
</a>
</div>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/browse/list.htm">
<div class="name-list" ng-class="{ 'without-comments': excludeComments }">
<!-- BEGIN: Header Row. -->
<div class="header-row">
<span class="col name-col">
<a ng-click class="name">
Name
</a>
</span>
<span class="col comments-col">
<a ng-click class="comments">
Comments
</a>
</span>
<span class="col version-col">
<a ng-click class="version">
Version
</a>
</span>
<span class="col updated-at-col">
<a ng-click class="updated-at">
Last Updated
</a>
</span>
<span class="col updated-by-col">
<a ng-click class="updated-by">
Updated By
</a>
</span>
</div>
<!-- END: Header Row. -->
<!-- BEGIN: Data Rows. -->
<div ng-repeat="displayItem in displayObjects | filter:search" class="data-row">
<div ng-if=" displayItem.type == 'divider' " class="divider">
<div class="line">
<span class="dividerLabel">{{displayItem.label}}</span>
</div>
</div>
<a ng-if="displayItem.type == 'screenObj' "
ng-click="applyScreenNavigation( displayItem )"
class="item"
ng-class="{ selected: ( displayItem == selectedScreen ) }">
<span class="col name-col">
<span class="name">
{{ displayItem.name }}
</span>
</span>
<span class="col comments-col">
<span class="comments" ng-class="{ new: displayItem.unreadCommentCount, old: ( displayItem.commentCount && ! displayItem.unreadCommentCount ) }">
<span class="unread">{{ displayItem.unreadCommentCount }}</span>
<span class="total">{{ displayItem.commentCount }}</span>
</span>
</span>
<span class="col version-col">
<span class="version">
{{ displayItem.imageVersion }}
</span>
</span>
<span class="col updated-at-col">
<span class="updated-at">
{{ displayItem.updatedAtDateLabel }}
</span>
</span>
<span class="col updated-by-col">
<span class="updated-by">
{{ displayItem.updatedByUserName }}
</span>
</span>
</a>
</div>
<!-- END: Data Rows. -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/directives/share-sketch-viewer.htm"><div id="shareSketchViewer" ng-show=" isShowingSketchViewer ">
<div class="modalOverlay">
<div class="sketchViewer">
<div class="closeViewer" ng-click=" closeSketchViewer() "></div>
<div ng-show=" sketchImageIsProcessing " class="isProcessing">
<p>
<img src="assets/apps/share/img/draw.png"/><br/>
This sketch is currently being processed.<br/>
<span class="sub">It'll be available shortly!</span>
</p>
</div>
<!-- Non-Temporaray sketches here -->
<div ng-if=" !sketchViewerSketchIsTemp " class="imageContainer">
<img ng-src="/api/comments/{{sketchViewerSketch.commentID}}/sketch/{{sketchViewerSketch.id}}"
inv-console-sketch-viewer-image
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'
}"/>
</div>
<!-- Temporary sketches here -->
<div ng-if=" sketchViewerSketchIsTemp " class="imageContainer">
<img ng-src="{{ screen.imageUrl }}"
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'
}" />
<div class="whiteOverlay" ng-style="{ opacity : sketchViewerSketch.opacity }"></div>
<div class="tempSketchOverlay" ng-bind-html=" sketchViewerSketch.svg ">
</div>
</div>
</div>
</div>
</div></script><script type="text/ng-template" id="/assets/apps/share/views/directives/share-sketch-builder.htm"><div id="shareSketchBuilder">
<div id="builderWindow">
<div id="sketchToolbar">
<div class="whiteboard_tools">
<a ng-click="setWhiteboardOpacity(0, 'none')" id="whiteboard_none" class="whiteboard_tool none overlay" ng-class="{ active: whiteboardSelected == 'none'}"><span>Transparent</span></a>
<a ng-click="setWhiteboardOpacity(.7, 'half')" id="whiteboard_half" class="whiteboard_tool half overlay" ng-class="{ active: whiteboardSelected == 'half'}"><span>50%</span></a>
<a ng-click="setWhiteboardOpacity(1, 'full')" id="whiteboard_full" class="whiteboard_tool full overlay" ng-class="{ active: whiteboardSelected == 'full'}"><span>100%</span></a>
</div> <!-- whiteboard_tools -->
<div class="tools">
<a id="pencil" class="sketch_tool pencil">
<i class="tool_icon tool_pencil"></i>
</a>
<a id="rect" class="sketch_tool square">
<i class="tool_icon tool_square"></i>
</a>
<a id="circle" class="sketch_tool circle">
<i class="tool_icon tool_circle"></i>
</a>
<a id="line" class="sketch_tool line">
<i class="tool_icon tool_line"></i>
</a>
<!--
<a id="arrow" class="sketch_tool arrow">
<i class="tool_icon tool_arrow"></i>
</a>
-->
<a id="text" class="sketch_tool text">
<i class="tool_icon tool_text"></i>
</a>
<a id="move" class="sketch_tool move">
<i class="tool_icon tool_move"></i>
</a>
<div class="actions_toolbar">
<a id="undo" rel="tooltip" data-placement="bottom" title="Undo action" class="sketch_action undo inactive">
<i class="tool_icon tool_undo"></i>
</a>
<a id="redo" rel="tooltip" data-placement="bottom" title="Redo action" class="sketch_action redo inactive">
<i class="tool_icon tool_redo"></i>
</a>
<a id="delete" rel="tooltip" data-placement="bottom" title="Remove element" class="sketch_action delete inactive">
<i class="tool_icon tool_delete"></i>
</a>
</div>
</div>
<div class="sketch_btns">
<a ng-click=" hideSketchBuilder() " class="btn cancel">Cancel</a>
<a ng-click=" saveSketch() " class="btn save">I'm Done</a>
</div>
</div>
<div class="scroll-wrap">
<div class="sketchImage_wrapper">
<img
ng-src="{{ screen.imageUrl }}"
ng-style="{ width: screen.width * screen.displayScale + 'px',
height: screen.height * screen.displayScale + 'px'}"
class="sketch_image"
/>
</div>
<div id="whiteboard_overlay" ng-class="whiteboardSelected"></div>
</div> <!-- scroll-wrap -->
</div> <!-- end builderWindow -->
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/directives/toggle.htm">
<div class="m-toggle off">
<!-- BEGIN: Labels Track. -->
<div class="toggle-labels-track">
<div class="toggle-labels">
<div class="toggle-label on">
<span class="text">On</span>
</div>
<div class="toggle-label off">
<span class="text">Off</span>
</div>
</div>
</div>
<!-- END: Labels Track. -->
<!-- BEGIN: Thumb Track. -->
<div class="toggle-thumb-track">
<a href="" class="toggle-thumb">
<span class="toggle-end">
<br />
</span>
</a>
</div>
<!-- END: Thumb Track. -->
</div></script><script type="text/ng-template" id="/assets/apps/share/views/share-lite/share-bar.htm"><div id="share_bar" ng-controller="toolbar.ToolbarController">
<a class="icon" href="{{HomeURI}}">InVision App</a>
<h2>{{ displayFilename }}</h2>
<div class="copied">Link copied to clipboard</div>
<ul>
<li><a ng-click="toggleShareModal()">Share</a></li>
<li><a ng-href="/api/snaps/download/{{share.key}}">Download</a></li>
<li class="feedback"><a ng-click="isShowingComments = !isShowingComments">Comment <span>{{ commentCount }}</span></a></li>
</ul>
<div class="share-modal" ng-show="isShowingShareModal">
<h2>Share link to <strong>{{ displayFilename }}</strong></h2>
<form inv-copy-to-clipboard>
<input type="text" name="copy" id="share_link" value="{{share.shareUrl}}{{share.key}}" />
<div class="button-container">
<button name="copy" data-clipboard-text="{{share.shareUrl}}{{share.key}}">Copy Link</button>
</div> <!-- button-container -->
</form>
<a ng-click="toggleShareModal()" class="close">Close</a>
</div> <!-- share-modal -->
</div> <!-- share_bar --></script><script type="text/ng-template" id="/assets/apps/share/views/share-lite/comment-bar.htm"><div id="comments_bar" ng-controller="toolbar.ToolbarController">
<h2>Click anywhere on the image to leave a comment</h2>
<p class="close"><a ng-click="isShowingComments = !isShowingComments">Close</a></p>
</div> <!-- share_bar --></script><script type="text/ng-template" id="/assets/apps/share/views/layouts/modal.htm"><div ng-controller="layouts.ModalController" class="l-modal">
<div ng-if="subview == 'error'" ng-include=" '/assets/apps/share/views/modal/error.htm' "></div>
<div ng-if="subview == 'shareTour'" ng-include=" '/assets/apps/share/views/modal/share-tour.htm' "></div>
</div></script><script type="text/ng-template" id="/assets/apps/share/views/preview/tour-point-form.htm"><form
ng-controller="comments.FormController"
ng-submit="submitForm()"
inv-comments-tour-form-key-combos
inv-tour-comments-form
class="conversation comment-thread-container tour-point-form">
<div class="comment-thread tour-point">
<header>
<button
class="close"
type="button"
ng-click="clearTourPointForm()">
×
</button>
</header>
<section class="primary-comment">
<div class="m-avatar" ng-class="{ 'system-avatar': comments[0].userHasSystemAvatar }">
<span class="rendering">{{ comments[0].userInitials }}</span>
<img
ng-if=" ! comments[0].userHasSystemAvatar "
ng-src="/avatars/{{ comments[0].userAvatarID }}"
class="rendering" />
</div>
<div class="post-content">
<div
class="post-comment"
ng-bind-html="comments[0].html">
</div>
</div>
<footer ng-if=" ! commentsExpanded ">
<div
ng-click="toggleCommentsExpanded()"
ng-class="{ 'no-comments': comments.length == 1 }"
class="reply-section">
Reply <span ng-if="comments.length > 1" class="comment-count">{{ comments.length - 1 }}</span>
</div>
<nav class="tour-point-nav">
<a
ng-click="previousTourPoint()"
ng-show="hasPreviousTourPoint()"
class="prev">Prev</a>
<a
ng-click="nextTourPoint()"
ng-show="hasNextTourPoint()"
class="next">Next</a>
</nav>
</footer>
</section>
<div
ng-if=" comments.length > 1 && commentsExpanded "
class="reply-counter"
ng-pluralize
count=" comments.length - 1 "
when="{
'0': '0 Replies',
'one': '1 Reply',
'other': '{} Replies'
}">
</div>
<section
class="comments-expanded"
ng-class="{
visible: !! commentsExpanded
}">
<div class="comments-expanded-inner">
<!-- BEGIN: Comments. -->
<div
ng-repeat="comment in comments"
ng-init=" showDeleteCommentConfirmation = false ; "
class="comment-item comment"
ng-class="{
first: $first,
unread: comment.isUnread,
collapsed: comment.isCollapsed,
'first-collapsed': comment.isFirstCollapsed,
last: $last
}"
inv-fade-show="!comment.isCollapsed || ( comment.isCollapsed && comment.isFirstCollapsed )">
<span ng-if=" ! $first ">
<!-- Special section for collapsed area -->
<div ng-if=" comment.isCollapsed " class="collapsed-comments">
<span ng-click="expandComments( )">View All {{ comments.length }} Comments</span>
</div>
<div class="m-avatar" ng-class="{ 'system-avatar': comment.userHasSystemAvatar }">
<span class="rendering">{{ comment.userInitials }}</span>
<img
ng-if=" ! comment.userHasSystemAvatar "
ng-src="/avatars/{{ comment.userAvatarID }}"
class="rendering" />
<!-- Status -->
<span
class="online-status"
ng-class="{ online: ( comment.userOnlineStatus == 'Online' ), away: ( comment.userOnlineStatus == 'Away' ) }">
{{ comment.userOnlineStatus }}
</span>
</div>
<div class="post-content post-emojis">
<h2 ng-hide="$first && conversation.isTourPoint">
<span>{{ comment.userName }}</span>
<span class="created-at">{{ comment.dateLabel }}</span>
</h2>
<div class="post-options" ng-show=" !comment.isEditing ">
<ul class="tools">
<li
class="view-history hidden"
ng-show="( ! comment.isEditing && ( comment.screenImageVersion != screen.imageVersion ) && comment.imageUrl )">
<a>View History</a>
</li>
<li
class="edit-comment hidden"
ng-show=" comment.isOwnedByUser || project.isOwnedByUser ">
<a
ng-click="editComment( comment )"
inv-tooltip="Edit comment">
Edit
</a>
</li>
<li
class="delete-comment hidden"
ng-show=" comment.isOwnedByUser || project.isOwnedByUser ">
<a
ng-click="showDeleteConfirmation( comment, $first )"
inv-tooltip="Delete comment">
Delete
</a>
</li>
</ul>
<div inv-history-overlay class="history-overlay" ng-if="( ( comment.screenImageVersion != screen.imageVersion ) && comment.imageUrl )">
<div class="history-overlay-image-container">
<img inv-screen-version-image-scaler
ng-src="{{ comment.imageUrl }}"
ng-style="{
top: - ( ( conversation.y * screen.displayScale ) - 130 ) + 'px',
left: - ( ( conversation.x * screen.displayScale ) - 270 )+ 'px'
}" />
</div>
<div class="hover-buffer"></div>
</div> <!-- history-overlay -->
</div> <!-- post-options -->
<a class="thumbs-up"
ng-show=" canLike "
ng-hide=" $first && conversation.isTourPoint "
ng-class="{ 'liked': comment.numberOfLikes, 'by-user': comment.hasUserLiked }"
ng-click="toggleLike( comment )"
inv-tooltip="{{ comment.likedByList }}">
<i class="icon thumbs up"></i>
{{comment.numberOfLikes}}
</a>
<div
ng-show="! comment.isEditing"
ng-bind-html="comment.html"
class="post-comment">
</div>
<div ng-if="comment.isEditing" class="editing-mode">
<div
inv-emoji-typeahead
model="comment.comment"
target="comment">
</div>
<textarea
inv-autofocus
inv-autosize
ng-model="comment.comment"
tabindex="101"
class="existing"></textarea>
</div>
<div
class="sketchList"
ng-show="comment.sketches.length > 0 && ( ! $first || ! conversation.isTourPoint )">
<div
ng-repeat="sketch in comment.sketches"
class="sketch">
<a
class="text"
ng-click=" startSketchViewer( sketch , false, conversation ) "
ng-class="{
editing: comment.isEditing
}">
<strong>{{ comment.userFirstName }}’s attached a sketch.</strong> View?
<span inv-tooltip="delete" class="delete" ng-show="comment.isEditing" ng-click=" deleteSketch( sketch.id )">x</span>
</a>
</div> <!-- sketch -->
</div> <!-- sketchList -->
<div class="editing-mode" ng-show="comment.isEditing">
<div inv-emoji-add target="comment"></div>
</div>
<div class="post-buttons" ng-show="( comment.isEditing )">
<button
type="button"
class="save"
ng-show="comment.isEditing"
tabindex="102"
ng-click="saveComment( comment, false )">
Save
</button>
<button
type="button"
class="cancel"
ng-show="comment.isEditing"
tabindex="103"
ng-click="stopEditingComments( comment )">
Cancel
</button>
</div>
</div> <!-- post-content -->
<!-- Delete confirmation for single comment. -->
<div inv-fade-show="comment.isDeleting" class="delete-confirmation">
<p>Delete this comment?</p>
<div class="action">
<a ng-click="deleteComment( comment )" class="confirm">Yes, Delete</a>
<a ng-click="hideDeleteConfirmation( comment )" class="cancel">Cancel</a>
</div>
</div>
</span>
</div>
<!-- END: Comments. -->
<div class="comment-item post-new-comment">
<div class="post post-emojis">
<div
class="post-comment"
ng-class="{ 'has-sketch': tempSketches.length > 0 }">
<div
inv-emoji-typeahead
model="newComment">
</div>
<textarea
inv-autosize
name="post-comment"
ng-model="newComment"
tabindex="201"
placeholder="Leave a comment..."
inv-focus="showCommentInput()"
ng-class="{
'has-sketch': tempSketches.length > 0,
open: isCommentInputVisible
}"></textarea>
<div class="sketchList" ng-show="tempSketches.length > 0">
<div ng-repeat="sketch in tempSketches" class="sketch">
<a ng-click=" startSketchViewer( sketch , true, conversation ) ">
<strong>Your sketch is attached.</strong> View?
<span class="delete" inv-tooltip="delete" ng-click=" deleteTempSketch(sketch.tempID) ">
×
</span>
</a>
</div> <!-- sketch -->
</div> <!-- sketchList -->
<div
class="add-sketch"
ng-show="tempSketches.length == 0 && isCommentInputVisible && ( ! conversation.isTourPoint || ! comments.length == 0 )">
<a ng-click=" startSketchBuilder() " inv-tooltip="Attach a sketch"></a>
</div>
<div inv-emoji-add></div>
</div> <!-- post-comment -->
</div> <!-- post -->
</div>
<div ng-show="isCommentInputVisible">
<div class="comment-item notify">
<div class="notify-top">
<p>
<span
inv-notify-text
names="{{ getUsersToBeNotified() }}"
others="{{ getNotifyCount() }}"></span>
<a ng-click="toggleUserList()" class="toggle">
<span ng-hide="isShowingUserList">(change)</span>
<span ng-show="isShowingUserList">(hide)</span>
</a>
</p>
</div> <!-- notify-top -->
<div
class="notify_drop"
ng-class="{
closed: ! isShowingUserList,
open: isShowingUserList
}">
<div
ng-show="isShowingUserList"
class="user-lists"
ng-class="{ 'members-only': isInternalConversation }">
<div class="notify_all" ng-show="members.length || affiliates.length">
<div class="notify_all_team">
<div class="checker">
<span
ng-class="{
'checked': getNotifyCount() > 0,
'partial': getNotifyCount() > 0 && getNotifyCount() < ( members.length + affiliates.length )
}">
<input
type="checkbox"
ng-click="toggleNotifyOption()" />
</span>
</div> <!-- checker -->
<div class="dropdown">
<a data-toggle="dropdown" class="dropdown-toggle">
{{notifyOptionSelected}}
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a ng-click="selectAll()">All</a></li>
<li><a ng-click="selectCollaborators()">Collaborators</a></li>
</ul>
</div> <!-- dropdown -->
</div> <!-- notify_all_team -->
</div> <!-- notify_all -->
<ul class="notify_person_list">
<li ng-repeat="user in members">
<label ng-class="{ 'checked': user.isSelected }" ng-show="user.id != shareUser.id">
<input type="checkbox" ng-model="user.isSelected" ng-click="toggleUserSelection( user )" inv-uniform>
<strong>{{ user.name }}</strong>
<span ng-show="isTeamMember">(Collaborator)</span>
</label>
</li>
</ul>
<ul class="notify_person_list" ng-show="isStakeholdersShowing()">
<li ng-repeat="user in affiliates">
<label ng-class="{ 'checked': user.isSelected }" ng-show="user.id != shareUser.id">
<input type="checkbox" ng-model="user.isSelected" ng-click="toggleUserSelection( user )" inv-uniform>
<strong>{{ user.name }}</strong>
<a class="remove-stakeholder" ng-show="isTeamMember" inv-confirm-popover="Remove forever?" on-confirm="removeStakeholder( user )"><img src="assets/apps/common/img/delete.png" /></a>
</label>
</li>
</ul>
</div>
<div ng-show="( isShowingUserList && ! isInternalConversation )">
<span ng-hide="showNotifyOthers == true" class="add-emails">
<a ng-click="showNotifyOthers = true">
Add others to the conversation…
</a>
</span>
<div class="add-emails-input" ng-show="showNotifyOthers">
<input type="text"
ng-model="emailAddresses"
id="notify_others"
placeholder="Add others via email (separated by comma)">
</div>
</div>
</div> <!-- notify_drop -->
</div> <!-- comment-item notify -->
<div class="error-message" ng-show="hasUnauthorizedEmail">
<p>The administrator of the {{ enterpriseConfig.name }} InVision account has disabled sharing to users outside of the account.</p>
</div>
<div class="comment-item footer submit">
<button
class="button"
tabindex="202"
ng-click="submitForm({ comment: newComment, sketches: tempSketches })"
type="button"
inv-success-button
after-success="onReplyFinished()"
delay="0">Reply</button>
<button class="close" type="button" ng-click="toggleCommentsExpanded()">cancel</button>
</div> <!-- footer -->
</div> <!-- isCommentInputVisible toggle -->
<!-- Delete confirmation for entire conversation. -->
<div inv-fade-show="isDeleting" class="delete-confirmation delete-conversation">
<p>Delete this <strong>entire</strong> conversation?</p>
<div class="action">
<a ng-click="deleteConversation( conversation )" class="btn btn-small flat dkgray">Yes, Delete</a>
<a ng-click="hideDeleteConfirmation()" class="cancel">Cancel</a>
</div>
</div>
<div inv-fade-show="isIdentifying" class="overlay identification">
<div class="form">
<h2>Please Identify Yourself</h2>
<p>In order to participate, we need to know who you are.</p>
<div ng-show="errorMessage" class="alert alert-error">
<strong>Oops</strong>: {{ errorMessage }}
</div>
<div class="field">
<label>Name:</label>
<input type="text" ng-model="identity.name" inv-autofocus tabindex="301" placeholder="Name" />
</div>
<div class="field">
<label>Email:</label>
<input type="text" ng-model="identity.email" tabindex="302" placeholder="Email Address" />
</div>
<div class="actions">
<button class="button" type="submit" tabindex="303">Reply</button>
<button class="close" type="button" ng-click="selectTourPoint(null)">cancel</button>
</div>
</div> <!-- form -->
</div> <!-- identification -->
<!-- This adds bototm-margin to the form so the page will scroll adequately. -->
<div class="bottom-buffer">
<br />
</div>
</div>
</section>
</div> <!-- comment-thread-container -->
</form>
</script><script type="text/ng-template" id="/assets/apps/share/views/preview/preview-tour-comments.htm"><div ng-if=" ! isLiveShare " ng-controller="preview.TourCommentsController">
<div ng-if=" tourPoints.length > 0 " ng-controller="comments.CommentsController">
<div
inv-comments-markers
ng-controller="comments.MarkersController">
<div
ng-if=" tooltipTourPoint "
class="tour-point-tooltip left"
ng-class=" tooltipClass() "
ng-mouseenter=" clearTooltipTimeout() "
ng-mouseleave=" clearTooltipTourPoint() "
ng-click=" selectTourPoint(tooltipTourPoint) "
inv-tour-point-tooltip>
<div class="m-avatar" ng-class="{ 'system-avatar': tooltipTourPoint.comment.userHasSystemAvatar }">
<span class="rendering">{{ tooltipTourPoint.comment.userInitials }}</span>
<img
ng-if=" ! tooltipTourPoint.comment.userHasSystemAvatar "
ng-src="/avatars/{{ tooltipTourPoint.comment.userAvatarID }}"
class="rendering" />
</div>
<div class="excerpt" ng-bind-html="tooltipExcerpt()"></div>
</div>
<!-- Only include the form if a tour point has been selected.-->
<div
class="comments-original"
ng-if="selectedConversation && !settings.features.mentions"
ng-include=" '/assets/apps/share/views/preview/tour-point-form.htm' ">
</div><!-- delete this div after mentions are enabled across all users -->
<div
class="comments-mentions"
ng-if="selectedConversation && settings.features.mentions"
ng-include=" '/assets/apps/share/views/preview/tour-point-form-mentions.htm' ">
</div>
<!-- View controlled by switch to overlay everything -->
<div inv-share-sketch-builder
ng-if=" isShowingSketchBuilder " >
</div>
<!-- Sketch viewer modal-->
<div inv-share-sketch-viewer
ng-if=" isShowingSketchViewer ">
</div>
</div>
</div>
</script><script type="text/ng-template" id="/assets/apps/share/views/preview/tour-point-form-mentions.htm"><form
ng-controller="comments.FormController"
ng-submit="submitForm()"
inv-comments-tour-form-key-combos